[llvm-commits] CVS: llvm/lib/Target/X86/X86ISelLowering.cpp

Chris Lattner sabre at nondot.org
Tue Dec 5 09:29:54 PST 2006



Changes in directory llvm/lib/Target/X86:

X86ISelLowering.cpp updated: 1.301 -> 1.302
---
Log message:

Fix typo noticed by Lauro Ramos Venancio, thanks!


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

 X86ISelLowering.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/Target/X86/X86ISelLowering.cpp
diff -u llvm/lib/Target/X86/X86ISelLowering.cpp:1.301 llvm/lib/Target/X86/X86ISelLowering.cpp:1.302
--- llvm/lib/Target/X86/X86ISelLowering.cpp:1.301	Mon Dec  4 22:01:03 2006
+++ llvm/lib/Target/X86/X86ISelLowering.cpp	Tue Dec  5 11:29:40 2006
@@ -5511,7 +5511,7 @@
         return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX,
                                      X86::SI, X86::DI, X86::BP, X86::SP, 0);
       else if (VT == MVT::i8)
-        return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::DL, 0);
+        return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
       break;
     case 'l':   // INDEX_REGS
       if (VT == MVT::i32)






More information about the llvm-commits mailing list