summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-09-21 18:51:21 +0000
committerChris Lattner <sabre@nondot.org>2010-09-21 18:51:21 +0000
commitfc448ff89b4fb7721de9da0b96fd00c13160c4c7 (patch)
tree7e7f7e40131fa128dbd68497a3b73e002bf8de82 /include
parent6229d0acb8f395552131a7015a5d1e7b2bae2111 (diff)
downloadllvm-fc448ff89b4fb7721de9da0b96fd00c13160c4c7.tar.gz
llvm-fc448ff89b4fb7721de9da0b96fd00c13160c4c7.tar.bz2
llvm-fc448ff89b4fb7721de9da0b96fd00c13160c4c7.tar.xz
convert a couple more places to use the new getStore()
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114463 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/MachineMemOperand.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/MachineMemOperand.h b/include/llvm/CodeGen/MachineMemOperand.h
index fe93463359..d03e51083e 100644
--- a/include/llvm/CodeGen/MachineMemOperand.h
+++ b/include/llvm/CodeGen/MachineMemOperand.h
@@ -64,6 +64,9 @@ struct MachinePointerInfo {
/// getGOT - Return a MachinePointerInfo record that refers to a
/// GOT entry.
static MachinePointerInfo getGOT();
+
+ /// getStack - stack pointer relative access.
+ static MachinePointerInfo getStack(int64_t Offset);
};