Fix typo noticed by Lauro Ramos Venancio, thanks!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32223 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-12-05 17:29:40 +00:00
parent 204b0c2ca0
commit af21f4f6f9

View File

@ -5511,7 +5511,7 @@ getRegClassForInlineAsmConstraint(const std::string &Constraint,
return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX,
X86::SI, X86::DI, X86::BP, X86::SP, 0); X86::SI, X86::DI, X86::BP, X86::SP, 0);
else if (VT == MVT::i8) 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; break;
case 'l': // INDEX_REGS case 'l': // INDEX_REGS
if (VT == MVT::i32) if (VT == MVT::i32)