mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Fix a bug introduced by the Getelementptr change
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3695 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
597f81fea2
commit
59afbf3999
@ -925,7 +925,7 @@ void CWriter::printIndexingExpression(Value *Ptr, User::op_iterator I,
|
||||
printType(cast<PointerType>(Ptr->getType())->getElementType());
|
||||
Out << ")]";
|
||||
} else {
|
||||
Out << ".field" << cast<ConstantSInt>(*I)->getValue();
|
||||
Out << ".field" << cast<ConstantUInt>(*I)->getValue();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -925,7 +925,7 @@ void CWriter::printIndexingExpression(Value *Ptr, User::op_iterator I,
|
||||
printType(cast<PointerType>(Ptr->getType())->getElementType());
|
||||
Out << ")]";
|
||||
} else {
|
||||
Out << ".field" << cast<ConstantSInt>(*I)->getValue();
|
||||
Out << ".field" << cast<ConstantUInt>(*I)->getValue();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user