mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-14 14:24:05 +00:00
Use the correct style casts
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@546 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -351,7 +351,7 @@ void Interpreter::executeAllocInst(AllocationInst *I, ExecutionContext &SF) {
|
||||
unsigned NumElements = 1;
|
||||
|
||||
if (I->getNumOperands()) { // Allocating a unsized array type?
|
||||
assert(Ty->isArrayType() && Ty->isArrayType()->isUnsized() &&
|
||||
assert(Ty->isArrayType() && Ty->castArrayType()->isUnsized() &&
|
||||
"Allocation inst with size operand for !unsized array type???");
|
||||
Ty = ((const ArrayType*)Ty)->getElementType(); // Get the actual type...
|
||||
|
||||
|
Reference in New Issue
Block a user