Fix a typo in bswap lowering.

llvm-svn: 37544
This commit is contained in:
Lauro Ramos Venancio 2007-06-11 23:16:16 +00:00
parent 4dd31a7b1b
commit 4c2f003971
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ static Value *LowerBSWAP(Value *V, Instruction *IP) {
"bswap.and2", IP);
Tmp4 = BinaryOperator::createOr(Tmp4, Tmp3, "bswap.or1", IP);
Tmp2 = BinaryOperator::createOr(Tmp2, Tmp1, "bswap.or2", IP);
V = BinaryOperator::createOr(Tmp4, Tmp3, "bswap.i32", IP);
V = BinaryOperator::createOr(Tmp4, Tmp2, "bswap.i32", IP);
break;
}
case 64: {