e.g.
include/llvm/Support/MathExtras.h:74:7: warning: "_MSC_VER" is not defined [-Wundef]
#elif _MSC_VER
^
Differential D14598
Cleanup some -Wundef warnings in include/llvm/Support/MathExtras.h tkelman on Nov 11 2015, 4:36 PM. Authored by
Details e.g. include/llvm/Support/MathExtras.h:74:7: warning: "_MSC_VER" is not defined [-Wundef] ^
Diff Detail Event TimelineComment Actions Thanks! On a similar note, should the instances of __GNUC__ >= 4 probably be changed to LLVM_GNUC_PREREQ(4, 0, 0)? Can be dealt with in a separate patch since I don't build under MSVC with the equivalent warning levels. |