mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-14 07:31:47 +00:00
Fixed a typo: line 2323: MOVSX16rm8 -> MOVZX16rm8. This was the cause fo 12/14/2005 hbd failure.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24717 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8c75ef9228
commit
74164098ff
@ -2332,7 +2332,7 @@ unsigned ISel::SelectExpr(SDOperand N) {
|
|||||||
case MVT::i16:
|
case MVT::i16:
|
||||||
assert(cast<VTSDNode>(Node->getOperand(3))->getVT() <= MVT::i8 &&
|
assert(cast<VTSDNode>(Node->getOperand(3))->getVT() <= MVT::i8 &&
|
||||||
"Bad zero extend!");
|
"Bad zero extend!");
|
||||||
addFullAddress(BuildMI(BB, X86::MOVSX16rm8, 5, Result), AM);
|
addFullAddress(BuildMI(BB, X86::MOVZX16rm8, 5, Result), AM);
|
||||||
break;
|
break;
|
||||||
case MVT::i8:
|
case MVT::i8:
|
||||||
assert(cast<VTSDNode>(Node->getOperand(3))->getVT() == MVT::i1 &&
|
assert(cast<VTSDNode>(Node->getOperand(3))->getVT() == MVT::i1 &&
|
||||||
|
Loading…
Reference in New Issue
Block a user