Fix a typo in bswap lowering.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37544 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Lauro Ramos Venancio 2007-06-11 23:16:16 +00:00
parent 9618bcaf7d
commit 976e2da081

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: {