summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-12-05 17:29:40 +0000
committerChris Lattner <sabre@nondot.org>2006-12-05 17:29:40 +0000
commita16201c6723040c67705339ad4bdcaf3b7b3920d (patch)
treefdf888435be7a5c1087452c08e3f087b0442ccec
parent2369a024d7814b1fb7ced2331182466792be36f8 (diff)
downloadbcm5719-llvm-a16201c6723040c67705339ad4bdcaf3b7b3920d.tar.gz
bcm5719-llvm-a16201c6723040c67705339ad4bdcaf3b7b3920d.zip
Fix typo noticed by Lauro Ramos Venancio, thanks!
llvm-svn: 32223
-rw-r--r--llvm/lib/Target/X86/X86ISelLowering.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp
index a9d217860b3..040b480de21 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -5511,7 +5511,7 @@ getRegClassForInlineAsmConstraint(const std::string &Constraint,
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)
OpenPOWER on IntegriCloud