Skip to content

Commit 7aea8ba

Browse files
author
ImanHosseini
committed
fmt
1 parent ee57ffa commit 7aea8ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/unittests/ADT/APIntTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ TEST(APIntTest, PowerSignedMinValueTo1) {
9191
// Test that MaxValue^3 == MaxValue
9292
TEST(APIntTest, ZeroToZero) {
9393
APInt Zero = APInt::getZero(32);
94-
APInt One(32,1);
94+
APInt One(32, 1);
9595
APInt ZeroToZero = APIntOps::pow(Zero, 0);
9696
EXPECT_EQ(ZeroToZero, One);
9797
}

0 commit comments

Comments
 (0)