mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Eliminate old-style cast
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7248 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9daa8a12d3
commit
28a128e37a
@ -276,7 +276,7 @@ ExprType ClassifyExpression(Value *Expr) {
|
||||
if (Right.Offset == 0) return Left; // shl x, 0 = x
|
||||
assert(Right.Offset->getType() == Type::UByteTy &&
|
||||
"Shift amount must always be a unsigned byte!");
|
||||
uint64_t ShiftAmount = ((ConstantUInt*)Right.Offset)->getValue();
|
||||
uint64_t ShiftAmount = cast<ConstantUInt>(Right.Offset)->getValue();
|
||||
ConstantInt *Multiplier = getUnsignedConstant(1ULL << ShiftAmount, Ty);
|
||||
|
||||
// We don't know how to classify it if they are shifting by more than what
|
||||
|
Loading…
x
Reference in New Issue
Block a user