Fix a typo pointd out by Maarten ter Huurne.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41059 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2007-08-13 23:27:11 +00:00
parent 21eca2a9cf
commit 12914380ed

View File

@ -5061,7 +5061,7 @@ getRegClassForInlineAsmConstraint(const std::string &Constraint,
else if (VT == MVT::i16)
return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 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;
}
}