Commit https://reviews.llvm.org/rL324489 added
EXPECT_EQ(false, N->isUnsigned());
which older GCC versions dislike for some reason. Anyway, it looks like the proper GTest way
is to use EXPECT_FALSE, etc.
Differential D43233
Use EXPECT_FALSE instead of EXPECT_EQ(false, ... chill on Feb 13 2018, 5:59 AM. Authored by
Details Commit https://reviews.llvm.org/rL324489 added EXPECT_EQ(false, N->isUnsigned()); which older GCC versions dislike for some reason. Anyway, it looks like the proper GTest way
Diff Detail
Event TimelineComment Actions LGTM. |