forked from OSchip/llvm-project
Don't write out constants that do not have a name, they will be inlined.
llvm-svn: 305
This commit is contained in:
parent
252afbaf33
commit
ee998be490
|
@ -129,13 +129,13 @@ bool AssemblyWriter::processConstPool(const ConstantPool &CP, bool isMethod) {
|
|||
// processConstant - Print out a constant pool entry...
|
||||
//
|
||||
bool AssemblyWriter::processConstant(const ConstPoolVal *CPV) {
|
||||
Out << "\t";
|
||||
if (!CPV->hasName())
|
||||
return false; // Don't print out unnamed constants, they will be inlined
|
||||
|
||||
// Print out name if it exists...
|
||||
if (CPV->hasName())
|
||||
Out << "%" << CPV->getName() << " = ";
|
||||
// Print out name...
|
||||
Out << "\t%" << CPV->getName() << " = ";
|
||||
|
||||
// Print out the opcode...
|
||||
// Print out the constant type...
|
||||
Out << CPV->getType();
|
||||
|
||||
// Write the value out now...
|
||||
|
|
Loading…
Reference in New Issue