diff options
author | Chris Lattner <sabre@nondot.org> | 2010-03-16 06:39:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-03-16 06:39:08 +0000 |
commit | cf910439ee9411a67c7ac8aefab03bd4a67e86f2 (patch) | |
tree | 73381aba5149b2d502abca29bb915f817c0b9c9a | |
parent | f5fec8fd8d22920a5c0cc1edc4198a85935ea21a (diff) | |
download | bcm5719-llvm-cf910439ee9411a67c7ac8aefab03bd4a67e86f2.tar.gz bcm5719-llvm-cf910439ee9411a67c7ac8aefab03bd4a67e86f2.zip |
fix the same bug on the x86-64 side of the fence.
llvm-svn: 98616
-rw-r--r-- | llvm/lib/Target/X86/X86Instr64bit.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86Instr64bit.td b/llvm/lib/Target/X86/X86Instr64bit.td index e59e6f08a46..4262c0ac051 100644 --- a/llvm/lib/Target/X86/X86Instr64bit.td +++ b/llvm/lib/Target/X86/X86Instr64bit.td @@ -202,7 +202,7 @@ let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in (ins i64mem_TC:$dst, i32imm:$offset, variable_ops), "#TC_RETURN $dst $offset", []>; - def TAILJMPd64 : Ii32<0xE9, RawFrm, (outs), + def TAILJMPd64 : Ii32PCRel<0xE9, RawFrm, (outs), (ins i64i32imm_pcrel:$dst, variable_ops), "jmp\t$dst # TAILCALL", []>; def TAILJMPr64 : I<0xFF, MRM4r, (outs), (ins GR64_TC:$dst, variable_ops), |