[llvm-commits] CVS: llvm/lib/Target/X86/X86InstrSSE.td

Chris Lattner sabre at nondot.org
Sat Oct 7 12:16:00 PDT 2006



Changes in directory llvm/lib/Target/X86:

X86InstrSSE.td updated: 1.154 -> 1.155
---
Log message:

Fix a bug where PADDQrm printed paddd instead of paddq.


---
Diffs of the changes:  (+1 -1)

 X86InstrSSE.td |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/Target/X86/X86InstrSSE.td
diff -u llvm/lib/Target/X86/X86InstrSSE.td:1.154 llvm/lib/Target/X86/X86InstrSSE.td:1.155
--- llvm/lib/Target/X86/X86InstrSSE.td:1.154	Sat Oct  7 14:14:49 2006
+++ llvm/lib/Target/X86/X86InstrSSE.td	Sat Oct  7 14:15:46 2006
@@ -1340,7 +1340,7 @@
               [(set VR128:$dst, (v2i64 (add VR128:$src1, VR128:$src2)))]>;
 }
 def PADDQrm : PDI<0xD4, MRMSrcMem, (ops VR128:$dst, VR128:$src1, i128mem:$src2),
-                  "paddd {$src2, $dst|$dst, $src2}",
+                  "paddq {$src2, $dst|$dst, $src2}",
               [(set VR128:$dst, (add VR128:$src1,
                                  (loadv2i64 addr:$src2)))]>;
 }






More information about the llvm-commits mailing list