Skip to content

Commit 9b14831

Browse files
[SandboxIR][NFC] Removed comments from LoadInst test case (llvm#101099)
1 parent c9cc6c4 commit 9b14831

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

llvm/unittests/SandboxIR/SandboxIRTest.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -766,7 +766,6 @@ define void @foo(ptr %arg0, ptr %arg1) {
766766
sandboxir::LoadInst *NewLd =
767767
sandboxir::LoadInst::create(Ld->getType(), Arg1, Align(8),
768768
/*InsertBefore=*/Ret, Ctx, "NewLd");
769-
// Checking if create() was volatile
770769
EXPECT_FALSE(NewLd->isVolatile());
771770
EXPECT_EQ(NewLd->getType(), Ld->getType());
772771
EXPECT_EQ(NewLd->getPointerOperand(), Arg1);
@@ -778,7 +777,6 @@ define void @foo(ptr %arg0, ptr %arg1) {
778777
/*InsertBefore=*/Ret,
779778
/*IsVolatile=*/true, Ctx, "NewVLd");
780779

781-
// Checking if create() was volatile
782780
EXPECT_TRUE(NewVLd->isVolatile());
783781
EXPECT_EQ(NewVLd->getName(), "NewVLd");
784782
// Check create(InsertAtEnd)

0 commit comments

Comments
 (0)