aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Operator.h
diff options
context:
space:
mode:
authorOscar Fuentes <ofv@wanadoo.es>2010-09-25 20:27:36 +0000
committerOscar Fuentes <ofv@wanadoo.es>2010-09-25 20:27:36 +0000
commit429c75b8654b0d1069f1897375f5801a4c5de017 (patch)
tree967cb1c1c4e7b82ddd8cb9fe3b59b4f0fe004aa4 /include/llvm/Operator.h
parent066de857f813991cb8985c7b10e130b32c878bd6 (diff)
downloadexternal_llvm-429c75b8654b0d1069f1897375f5801a4c5de017.zip
external_llvm-429c75b8654b0d1069f1897375f5801a4c5de017.tar.gz
external_llvm-429c75b8654b0d1069f1897375f5801a4c5de017.tar.bz2
Avoid warnings about implicit conversions to `bool' in MSVC. This time
for real. Patch by Nathan Jeffords! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114796 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Operator.h')
-rw-r--r--include/llvm/Operator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Operator.h b/include/llvm/Operator.h
index d848417..3aae586 100644
--- a/include/llvm/Operator.h
+++ b/include/llvm/Operator.h
@@ -99,7 +99,7 @@ public:
/// hasNoSignedWrap - Test whether this operation is known to never
/// undergo signed overflow, aka the nsw property.
bool hasNoSignedWrap() const {
- return static_cast<bool>(SubclassOptionalData & NoSignedWrap);
+ return (SubclassOptionalData & NoSignedWrap) != 0;
}
static inline bool classof(const OverflowingBinaryOperator *) { return true; }