diff options
Diffstat (limited to 'llvm/unittests')
-rw-r--r-- | llvm/unittests/ADT/IListSentinelTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ADT/IListSentinelTest.cpp b/llvm/unittests/ADT/IListSentinelTest.cpp index a5e36560c12..bd60c909de7 100644 --- a/llvm/unittests/ADT/IListSentinelTest.cpp +++ b/llvm/unittests/ADT/IListSentinelTest.cpp @@ -37,7 +37,7 @@ TEST(IListSentinelTest, DefaultConstructor) { Sentinel S; EXPECT_EQ(&S, LocalAccess::getPrev(S)); EXPECT_EQ(&S, LocalAccess::getNext(S)); -#ifdef LLVM_ENABLE_ABI_BREAKING_CHECKS +#if LLVM_ENABLE_ABI_BREAKING_CHECKS EXPECT_TRUE(S.isKnownSentinel()); #else EXPECT_FALSE(S.isKnownSentinel()); |