[llvm-commits] CVS: llvm/lib/Target/X86/X86InstrSSE.td 
    Evan Cheng 
    evan.cheng at apple.com
       
    Wed Jun 28 17:34:35 PDT 2006
    
    
  
Changes in directory llvm/lib/Target/X86:
X86InstrSSE.td updated: 1.126 -> 1.127
---
Log message:
Always use xorps to clear XMM registers.
---
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.126 llvm/lib/Target/X86/X86InstrSSE.td:1.127
--- llvm/lib/Target/X86/X86InstrSSE.td:1.126	Mon Jun 19 19:25:29 2006
+++ llvm/lib/Target/X86/X86InstrSSE.td	Wed Jun 28 19:34:23 2006
@@ -2116,7 +2116,7 @@
                     "xorps $dst, $dst",
                     [(set VR128:$dst, (v4f32 immAllZerosV))]>;
 def V_SET0_PD : PDI<0x57, MRMInitReg, (ops VR128:$dst),
-                    "xorpd $dst, $dst",
+                    "xorps $dst, $dst",
                     [(set VR128:$dst, (v2f64 immAllZerosV))]>;
 
 def V_SETALLONES : PDI<0x76, MRMInitReg, (ops VR128:$dst),
    
    
More information about the llvm-commits
mailing list