forked from OSchip/llvm-project
Fixed a typo: line 2323: MOVSX16rm8 -> MOVZX16rm8. This was the cause fo 12/14/2005 hbd failure.
llvm-svn: 24717
This commit is contained in:
parent
3db275d996
commit
023aef2f31
|
@ -2332,7 +2332,7 @@ unsigned ISel::SelectExpr(SDOperand N) {
|
|||
case MVT::i16:
|
||||
assert(cast<VTSDNode>(Node->getOperand(3))->getVT() <= MVT::i8 &&
|
||||
"Bad zero extend!");
|
||||
addFullAddress(BuildMI(BB, X86::MOVSX16rm8, 5, Result), AM);
|
||||
addFullAddress(BuildMI(BB, X86::MOVZX16rm8, 5, Result), AM);
|
||||
break;
|
||||
case MVT::i8:
|
||||
assert(cast<VTSDNode>(Node->getOperand(3))->getVT() == MVT::i1 &&
|
||||
|
|
Loading…
Reference in New Issue