mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
For PR1297:
Make sure that the CTPOP result is casted to i32 as the bit counting intrinsics all return i32 now (this affects CTLZ and CTTZ as well). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35567 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
86189a4460
commit
dc1966e6ba
@ -218,7 +218,7 @@ static Value *LowerCTPOP(Value *V, Instruction *IP) {
|
||||
V = BinaryOperator::createAdd(LHS, RHS, "ctpop.step", IP);
|
||||
}
|
||||
|
||||
return V;
|
||||
return CastInst::createIntegerCast(V, Type::Int32Ty, false, "ctpop", IP);
|
||||
}
|
||||
|
||||
/// LowerCTLZ - Emit the code to lower ctlz of V before the specified
|
||||
|
Loading…
Reference in New Issue
Block a user