diff options
| author | Chris Lattner <sabre@nondot.org> | 2004-08-16 23:38:36 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2004-08-16 23:38:36 +0000 |
| commit | 54917749340ab5db63247c81d5fef879d381e6c7 (patch) | |
| tree | 9e087a6e05651b7b55db7f3545027beee3492528 /llvm/lib/Target | |
| parent | b4f1f71bf0e35ca77b1433faf36693471a1162ef (diff) | |
| download | bcm5719-llvm-54917749340ab5db63247c81d5fef879d381e6c7.tar.gz bcm5719-llvm-54917749340ab5db63247c81d5fef879d381e6c7.zip | |
More changes to make PPC32 and X86 more similar
llvm-svn: 15842
Diffstat (limited to 'llvm/lib/Target')
| -rw-r--r-- | llvm/lib/Target/PowerPC/PPC32AsmPrinter.cpp | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/llvm/lib/Target/PowerPC/PPC32AsmPrinter.cpp b/llvm/lib/Target/PowerPC/PPC32AsmPrinter.cpp index df7b1bece45..151580c8d26 100644 --- a/llvm/lib/Target/PowerPC/PPC32AsmPrinter.cpp +++ b/llvm/lib/Target/PowerPC/PPC32AsmPrinter.cpp @@ -152,13 +152,16 @@ static void printAsCString(std::ostream &O, const ConstantArray *CVA) { void PowerPCAsmPrinter::emitGlobalConstant(const Constant *CV) { const TargetData &TD = TM.getTargetData(); - if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) { - if (isStringCompatible(CVA)) { - O << "\t.ascii "; + if (CV->isNullValue()) { + O << "\t.space\t" << TD.getTypeSize(CV->getType()) << "\n"; + return; + } else if (const ConstantArray *CVA = dyn_cast<ConstantArray>(CV)) { + if (CVA->isString()) { + O << "\t.ascii\t"; printAsCString(O, CVA); O << "\n"; } else { // Not a string. Print the values in successive locations - for (unsigned i=0, e = CVA->getNumOperands(); i != e; i++) + for (unsigned i = 0, e = CVA->getNumOperands(); i != e; ++i) emitGlobalConstant(CVA->getOperand(i)); } return; @@ -166,7 +169,7 @@ void PowerPCAsmPrinter::emitGlobalConstant(const Constant *CV) { // Print the fields in successive locations. Pad to align if needed! const StructLayout *cvsLayout = TD.getStructLayout(CVS->getType()); unsigned sizeSoFar = 0; - for (unsigned i = 0, e = CVS->getNumOperands(); i != e; i++) { + for (unsigned i = 0, e = CVS->getNumOperands(); i != e; ++i) { const Constant* field = CVS->getOperand(i); // Check if padding is needed and insert one or more 0s. @@ -243,12 +246,7 @@ void PowerPCAsmPrinter::emitGlobalConstant(const Constant *CV) { case Type::FloatTyID: case Type::DoubleTyID: assert (0 && "Should have already output floating point constant."); default: - if (CV == Constant::getNullValue(type)) { // Zero initializer? - O << ".space\t" << TD.getTypeSize(type) << "\n"; - return; - } - std::cerr << "Can't handle printing: " << *CV; - abort(); + assert (0 && "Can't handle printing this type of thing"); break; } O << "\t"; |

