[llvm] 258631f - [GlobalISel] Fix a bit of formatting. NFC
David Green via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 23 10:44:07 PST 2023
Author: David Green
Date: 2023-11-23T18:44:01Z
New Revision: 258631fc0c640b5091950a3323e2c51545c3f0a9
URL: https://github.com/llvm/llvm-project/commit/258631fc0c640b5091950a3323e2c51545c3f0a9
DIFF: https://github.com/llvm/llvm-project/commit/258631fc0c640b5091950a3323e2c51545c3f0a9.diff
LOG: [GlobalISel] Fix a bit of formatting. NFC
Added:
Modified:
llvm/include/llvm/CodeGen/GlobalISel/GenericMachineInstrs.h
Removed:
################################################################################
diff --git a/llvm/include/llvm/CodeGen/GlobalISel/GenericMachineInstrs.h b/llvm/include/llvm/CodeGen/GlobalISel/GenericMachineInstrs.h
index b34b90fd24eb602..6ab1d4550c51ca9 100644
--- a/llvm/include/llvm/CodeGen/GlobalISel/GenericMachineInstrs.h
+++ b/llvm/include/llvm/CodeGen/GlobalISel/GenericMachineInstrs.h
@@ -54,8 +54,8 @@ class GMemOperation : public GenericMachineInstr {
bool isUnordered() const { return getMMO().isUnordered(); }
/// Returns the size in bytes of the memory access.
- uint64_t getMemSize() const { return getMMO().getSize();
- } /// Returns the size in bits of the memory access.
+ uint64_t getMemSize() const { return getMMO().getSize(); }
+ /// Returns the size in bits of the memory access.
uint64_t getMemSizeInBits() const { return getMMO().getSizeInBits(); }
static bool classof(const MachineInstr *MI) {
More information about the llvm-commits
mailing list