aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineOperand.cpp
diff options
context:
space:
mode:
authorGuillaume Chatelet <gchatelet@google.com>2020-03-30 09:38:44 +0000
committerGuillaume Chatelet <gchatelet@google.com>2020-03-30 13:03:27 +0000
commit01ba2ad9ef085f184f3b01cefed4ce59e170054a (patch)
treeb34c880c6a029776c3754f7c226d8163a81fc5a1 /llvm/lib/CodeGen/MachineOperand.cpp
parent6f428e09fbe8ce7e3510ae024031a5fc19653483 (diff)
downloadllvm-01ba2ad9ef085f184f3b01cefed4ce59e170054a.zip
llvm-01ba2ad9ef085f184f3b01cefed4ce59e170054a.tar.gz
llvm-01ba2ad9ef085f184f3b01cefed4ce59e170054a.tar.bz2
[Alignment][NFC] Provide tightened up functions in SelectionDAG, MachineFunction and MachineMemOperand
Summary: This is patch is part of a series to introduce an Alignment type. See this thread for context: http://lists.llvm.org/pipermail/llvm-dev/2019-July/133851.html See this patch for the introduction of the type: https://reviews.llvm.org/D64790 Reviewers: courbet Subscribers: hiraditya, jfb, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D77046
Diffstat (limited to 'llvm/lib/CodeGen/MachineOperand.cpp')
-rw-r--r--llvm/lib/CodeGen/MachineOperand.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineOperand.cpp b/llvm/lib/CodeGen/MachineOperand.cpp
index a202131..5e4d5ed 100644
--- a/llvm/lib/CodeGen/MachineOperand.cpp
+++ b/llvm/lib/CodeGen/MachineOperand.cpp
@@ -1004,7 +1004,7 @@ MachinePointerInfo MachinePointerInfo::getUnknownStack(MachineFunction &MF) {
}
MachineMemOperand::MachineMemOperand(MachinePointerInfo ptrinfo, Flags f,
- uint64_t s, uint64_t a,
+ uint64_t s, Align a,
const AAMDNodes &AAInfo,
const MDNode *Ranges, SyncScope::ID SSID,
AtomicOrdering Ordering,