diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-12-15 06:49:02 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-12-15 06:49:02 +0000 |
commit | b3032962ef8c3aabc39085be329e0883908725a1 (patch) | |
tree | 9907c7498684056ac549411e28918a7aed92e303 /llvm | |
parent | a867a58a26c6035be150a19d84bf04e1303da044 (diff) | |
download | bcm5719-llvm-b3032962ef8c3aabc39085be329e0883908725a1.tar.gz bcm5719-llvm-b3032962ef8c3aabc39085be329e0883908725a1.zip |
Fix an encoding bug.
llvm-svn: 91417
Diffstat (limited to 'llvm')
-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 420d2db02da..b6a2c0522ab 100644 --- a/llvm/lib/Target/X86/X86Instr64bit.td +++ b/llvm/lib/Target/X86/X86Instr64bit.td @@ -1335,7 +1335,7 @@ def CMOVNO64rm : RI<0x41, MRMSrcMem, // if !overflow, GR64 = [mem64] // Use sbb to materialize carry flag into a GPR. let Defs = [EFLAGS], Uses = [EFLAGS], isCodeGenOnly = 1 in -def SETB_C64r : RI<0x19, MRMDestReg, (outs GR64:$dst), (ins), +def SETB_C64r : RI<0x19, MRMInitReg, (outs GR64:$dst), (ins), "sbb{q}\t$dst, $dst", [(set GR64:$dst, (zext (X86setcc_c X86_COND_B, EFLAGS)))]>; |