Skip to content

Commit efd13eb

Browse files
committed
[SandboxIR][NFC] Remove trailing whitespaces
1 parent 5a9b9ef commit efd13eb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

llvm/include/llvm/SandboxIR/SandboxIR.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@ class LoadInst final : public Instruction {
760760

761761
public:
762762
/// Return true if this is a load from a volatile memory location.
763-
bool isVolatile() const { return cast<llvm::LoadInst>(Val)->isVolatile(); }
763+
bool isVolatile() const { return cast<llvm::LoadInst>(Val)->isVolatile(); }
764764

765765
unsigned getUseOperandNo(const Use &Use) const final {
766766
return getUseOperandNoDefault(Use);

llvm/unittests/SandboxIR/SandboxIRTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ define void @foo(ptr %arg0, ptr %arg1) {
755755

756756
// Check isVolatile()
757757
EXPECT_FALSE(Ld->isVolatile());
758-
// Check isVolatile()
758+
// Check isVolatile()
759759
EXPECT_TRUE(Vld->isVolatile());
760760
// Check getPointerOperand()
761761
EXPECT_EQ(Ld->getPointerOperand(), Arg0);

0 commit comments

Comments
 (0)