diff options
-rw-r--r-- | Analysis/ValueManager.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Analysis/ValueManager.cpp b/Analysis/ValueManager.cpp index 61a2154c34..64f4b27d3f 100644 --- a/Analysis/ValueManager.cpp +++ b/Analysis/ValueManager.cpp @@ -130,5 +130,8 @@ ValueManager::EvaluateAPSInt(BinaryOperator::Opcode Op, case BinaryOperator::Or: return getValue( V1 | V2 ); + + case BinaryOperator::Xor: + return getValue( V1 ^ V2 ); } } |