aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/X86/X86InstrCompiler.td
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-12-09 00:26:41 +0000
committerEric Christopher <echristo@apple.com>2010-12-09 00:26:41 +0000
commit2871768f4031b2a17a639caee68f693214c030f2 (patch)
tree1c20ba93a4a8452f8f0af21dc396de9977008cab /lib/Target/X86/X86InstrCompiler.td
parentd639c7cab42f8919b2d9f5ab169203bf8bc45f10 (diff)
downloadexternal_llvm-2871768f4031b2a17a639caee68f693214c030f2.zip
external_llvm-2871768f4031b2a17a639caee68f693214c030f2.tar.gz
external_llvm-2871768f4031b2a17a639caee68f693214c030f2.tar.bz2
Add rsp to the uses for the same reason as 32-bit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121328 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86InstrCompiler.td')
-rw-r--r--lib/Target/X86/X86InstrCompiler.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86InstrCompiler.td b/lib/Target/X86/X86InstrCompiler.td
index 26a763e..4773745 100644
--- a/lib/Target/X86/X86InstrCompiler.td
+++ b/lib/Target/X86/X86InstrCompiler.td
@@ -277,7 +277,7 @@ def TLSCall_32 : I<0, Pseudo, (outs), (ins i32mem:$sym),
// For x86_64, the address of the thunk is passed in %rdi, on return
// the address of the variable is in %rax. All other registers are preserved.
let Defs = [RAX],
- Uses = [RDI],
+ Uses = [RSP, RDI],
usesCustomInserter = 1 in
def TLSCall_64 : I<0, Pseudo, (outs), (ins i64mem:$sym),
"# TLSCall_64",