diff options
| author | Evan Cheng <evan.cheng@apple.com> | 2010-03-14 19:28:34 +0000 |
|---|---|---|
| committer | Evan Cheng <evan.cheng@apple.com> | 2010-03-14 19:28:34 +0000 |
| commit | 6a9e10905bb8a8df812d9b44129fa1a3b7cfd470 (patch) | |
| tree | 93e590cff79a8a4c4609f8fc74eb053bff503963 /llvm | |
| parent | f1ed59a4186b2c585ee11be8de7311abeaddddb6 (diff) | |
| download | bcm5719-llvm-6a9e10905bb8a8df812d9b44129fa1a3b7cfd470.tar.gz bcm5719-llvm-6a9e10905bb8a8df812d9b44129fa1a3b7cfd470.zip | |
Fix jit encoding bugs.
llvm-svn: 98510
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/Target/X86/X86Instr64bit.td | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Target/X86/X86Instr64bit.td b/llvm/lib/Target/X86/X86Instr64bit.td index 4b071f12261..e59e6f08a46 100644 --- a/llvm/lib/Target/X86/X86Instr64bit.td +++ b/llvm/lib/Target/X86/X86Instr64bit.td @@ -208,7 +208,7 @@ let isCall = 1, isTerminator = 1, isReturn = 1, isBarrier = 1 in def TAILJMPr64 : I<0xFF, MRM4r, (outs), (ins GR64_TC:$dst, variable_ops), "jmp{q}\t{*}$dst # TAILCALL", []>; - def TAILJMPm64 : I<0xff, MRM4m, (outs), (ins i64mem_TC:$dst, variable_ops), + def TAILJMPm64 : I<0xFF, MRM4m, (outs), (ins i64mem_TC:$dst, variable_ops), "jmp{q}\t{*}$dst # TAILCALL", []>; } @@ -360,17 +360,17 @@ def MOV64mi32 : RIi32<0xC7, MRM0m, (outs), (ins i64mem:$dst, i64i32imm:$src), /// Versions of MOV64rr, MOV64rm, and MOV64mr for i64mem_TC and GR64_TC. let neverHasSideEffects = 1 in -def MOV64rr_TC : I<0x89, MRMDestReg, (outs GR64_TC:$dst), (ins GR64_TC:$src), +def MOV64rr_TC : RI<0x89, MRMDestReg, (outs GR64_TC:$dst), (ins GR64_TC:$src), "mov{q}\t{$src, $dst|$dst, $src}", []>; let mayLoad = 1, canFoldAsLoad = 1, isReMaterializable = 1 in -def MOV64rm_TC : I<0x8B, MRMSrcMem, (outs GR64_TC:$dst), (ins i64mem_TC:$src), +def MOV64rm_TC : RI<0x8B, MRMSrcMem, (outs GR64_TC:$dst), (ins i64mem_TC:$src), "mov{q}\t{$src, $dst|$dst, $src}", []>; let mayStore = 1 in -def MOV64mr_TC : I<0x89, MRMDestMem, (outs), (ins i64mem_TC:$dst, GR64_TC:$src), +def MOV64mr_TC : RI<0x89, MRMDestMem, (outs), (ins i64mem_TC:$dst, GR64_TC:$src), "mov{q}\t{$src, $dst|$dst, $src}", []>; |

