mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-26 07:34:14 +00:00
Write constexpr casts using the cast X to Y notation, not using the implicit
type result git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3354 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ec1b8a0796
commit
95586b8c83
@ -337,7 +337,7 @@ static void WriteConstantInt(ostream &Out, const Constant *CV, bool PrintName,
|
||||
Out << CE->getOpcodeName();
|
||||
|
||||
bool isGEP = CE->getOpcode() == Instruction::GetElementPtr;
|
||||
Out << (isGEP? " (" : " ");
|
||||
Out << (isGEP ? " (" : " ");
|
||||
|
||||
for (User::const_op_iterator OI=CE->op_begin(); OI != CE->op_end(); ++OI) {
|
||||
printTypeInt(Out, (*OI)->getType(), TypeTable);
|
||||
@ -348,6 +348,11 @@ static void WriteConstantInt(ostream &Out, const Constant *CV, bool PrintName,
|
||||
|
||||
if (isGEP)
|
||||
Out << ")";
|
||||
else if (CE->getOpcode() == Instruction::Cast) {
|
||||
Out << " to ";
|
||||
printTypeInt(Out, CE->getType(), TypeTable);
|
||||
}
|
||||
|
||||
} else {
|
||||
Out << "<placeholder or erroneous Constant>";
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user