mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-26 05:25:47 +00:00
Attempt to unbreak the FreeBSD buildbot by XFAILing a unit test that seems to be
miscompiled by the system gcc-4.2.1 The test remains enabled for the second-stage test. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113824 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -39,6 +39,9 @@ TEST(APIntTest, i128_NegativeCount) {
|
|||||||
EXPECT_EQ(-1, Minus1.getSExtValue());
|
EXPECT_EQ(-1, Minus1.getSExtValue());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// XFAIL this test on FreeBSD where the system gcc-4.2.1 seems to miscompile it.
|
||||||
|
#if defined(__llvm__) || !defined(__FreeBSD__)
|
||||||
|
|
||||||
TEST(APIntTest, i33_Count) {
|
TEST(APIntTest, i33_Count) {
|
||||||
APInt i33minus2(33, static_cast<uint64_t>(-2), true);
|
APInt i33minus2(33, static_cast<uint64_t>(-2), true);
|
||||||
EXPECT_EQ(0u, i33minus2.countLeadingZeros());
|
EXPECT_EQ(0u, i33minus2.countLeadingZeros());
|
||||||
@@ -50,6 +53,8 @@ TEST(APIntTest, i33_Count) {
|
|||||||
EXPECT_EQ(((uint64_t)-2)&((1ull<<33) -1), i33minus2.getZExtValue());
|
EXPECT_EQ(((uint64_t)-2)&((1ull<<33) -1), i33minus2.getZExtValue());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
TEST(APIntTest, i65_Count) {
|
TEST(APIntTest, i65_Count) {
|
||||||
APInt i65minus(65, 0, true);
|
APInt i65minus(65, 0, true);
|
||||||
i65minus.set(64);
|
i65minus.set(64);
|
||||||
|
Reference in New Issue
Block a user