summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/CBackend
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-01-16 18:02:45 +0000
committerChris Lattner <sabre@nondot.org>2007-01-16 18:02:45 +0000
commit4202f373522f2deec8b187197a465b6c89a39876 (patch)
treedfbc040b42c6d79561ca05034d7ba6cc0342f9c0 /llvm/lib/Target/CBackend
parent6cc58a0dc5756fa0ddcd0aad4a2c4c2c3a96b87c (diff)
downloadbcm5719-llvm-4202f373522f2deec8b187197a465b6c89a39876.tar.gz
bcm5719-llvm-4202f373522f2deec8b187197a465b6c89a39876.zip
Fix SMG2000 with the CBE: opaque types need names too.
llvm-svn: 33258
Diffstat (limited to 'llvm/lib/Target/CBackend')
-rw-r--r--llvm/lib/Target/CBackend/CBackend.cpp18
1 files changed, 8 insertions, 10 deletions
diff --git a/llvm/lib/Target/CBackend/CBackend.cpp b/llvm/lib/Target/CBackend/CBackend.cpp
index 304145887b0..737a346ca48 100644
--- a/llvm/lib/Target/CBackend/CBackend.cpp
+++ b/llvm/lib/Target/CBackend/CBackend.cpp
@@ -272,7 +272,7 @@ bool CBackendNameAllUsedStructsAndMergeFunctions::runOnModule(Module &M) {
// If this isn't a struct type, remove it from our set of types to name.
// This simplifies emission later.
- if (!isa<StructType>(I->second)) {
+ if (!isa<StructType>(I->second) && !isa<OpaqueType>(I->second)) {
TST.remove(I);
} else {
// If this is not used, remove it from the symbol table.
@@ -1691,23 +1691,21 @@ void CWriter::printModuleTypes(const TypeSymbolTable &TST) {
// Print out forward declarations for structure types before anything else!
Out << "/* Structure forward decls */\n";
- for (; I != End; ++I)
- if (const Type *STy = dyn_cast<StructType>(I->second)) {
- std::string Name = "struct l_" + Mang->makeNameProper(I->first);
- Out << Name << ";\n";
- TypeNames.insert(std::make_pair(STy, Name));
- }
+ for (; I != End; ++I) {
+ std::string Name = "struct l_" + Mang->makeNameProper(I->first);
+ Out << Name << ";\n";
+ TypeNames.insert(std::make_pair(I->second, Name));
+ }
Out << '\n';
// Now we can print out typedefs. Above, we guaranteed that this can only be
- // for struct types.
+ // for struct or opaque types.
Out << "/* Typedefs */\n";
for (I = TST.begin(); I != End; ++I) {
- const StructType *Ty = cast<StructType>(I->second);
std::string Name = "l_" + Mang->makeNameProper(I->first);
Out << "typedef ";
- printType(Out, Ty, false, Name);
+ printType(Out, I->second, false, Name);
Out << ";\n";
}
OpenPOWER on IntegriCloud