aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-02-27 08:18:55 +0000
committerChris Lattner <sabre@nondot.org>2010-02-27 08:18:55 +0000
commit4446c3f4d03bce8feaed683590980479b89f744b (patch)
tree21a75894eff9f22ede4a20f5165bd2eb7fe2654c
parentdb8b6222d48f9cb22623a1cfcafafb0d62a184b7 (diff)
downloadexternal_llvm-4446c3f4d03bce8feaed683590980479b89f744b.zip
external_llvm-4446c3f4d03bce8feaed683590980479b89f744b.tar.gz
external_llvm-4446c3f4d03bce8feaed683590980479b89f744b.tar.bz2
fix an incorrect (overly conservative) predicate.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97316 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/X86/X86Instr64bit.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86Instr64bit.td b/lib/Target/X86/X86Instr64bit.td
index 3b5ba3b..49fc853 100644
--- a/lib/Target/X86/X86Instr64bit.td
+++ b/lib/Target/X86/X86Instr64bit.td
@@ -562,7 +562,7 @@ def ADC64mi8 : RIi8<0x83, MRM2m, (outs), (ins i64mem:$dst, i64i8imm :$src2),
addr:$dst)]>;
def ADC64mi32 : RIi32<0x81, MRM2m, (outs), (ins i64mem:$dst, i64i32imm:$src2),
"adc{q}\t{$src2, $dst|$dst, $src2}",
- [(store (adde (load addr:$dst), i64immSExt8:$src2),
+ [(store (adde (load addr:$dst), i64immSExt32:$src2),
addr:$dst)]>;
} // Uses = [EFLAGS]