Skip to content

Commit

Permalink
[GlobalISel] Fix a bit of formatting. NFC
Browse files Browse the repository at this point in the history
  • Loading branch information
davemgreen committed Nov 23, 2023
1 parent c308d90 commit 258631f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llvm/include/llvm/CodeGen/GlobalISel/GenericMachineInstrs.h
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 258631f

Please sign in to comment.