summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--unittests/IR/ValueMapTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/IR/ValueMapTest.cpp b/unittests/IR/ValueMapTest.cpp
index cc844ba30b..ffbe661528 100644
--- a/unittests/IR/ValueMapTest.cpp
+++ b/unittests/IR/ValueMapTest.cpp
@@ -118,7 +118,7 @@ TYPED_TEST(ValueMapTest, OperationsWork) {
template<typename ExpectedType, typename VarType>
void CompileAssertHasType(VarType) {
LLVM_ATTRIBUTE_UNUSED typedef char
- assert[is_same<ExpectedType, VarType>::value ? 1 : -1];
+ NOT_SAME[is_same<ExpectedType, VarType>::value ? 1 : -1];
}
TYPED_TEST(ValueMapTest, Iteration) {