simplify some code.
authorChris Lattner <sabre@nondot.org>
Sun, 6 Mar 2005 02:28:23 +0000 (02:28 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 6 Mar 2005 02:28:23 +0000 (02:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20471 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/CBackend/CBackend.cpp
lib/Target/CBackend/Writer.cpp

index af478d9bfdbb0df12f637c809dfc4ba569acc1bc..683e42bdbc8e75851f12e80425ef81f4a9fc9d30 100644 (file)
@@ -990,13 +990,12 @@ void CWriter::printFloatingPointConstants(Function &F) {
 /// type name is found, emit it's declaration...
 ///
 void CWriter::printModuleTypes(const SymbolTable &ST) {
-  // If there are no type names, exit early.
-  if ( ! ST.hasTypes() )
-    return;
-
-  // We are only interested in the type plane of the symbol table...
+  // We are only interested in the type plane of the symbol table.
   SymbolTable::type_const_iterator I   = ST.type_begin();
   SymbolTable::type_const_iterator End = ST.type_end();
+
+  // If there are no type names, exit early.
+  if (I == End) return;
   
   // Print out forward declarations for structure types before anything else!
   Out << "/* Structure forward decls */\n";
index af478d9bfdbb0df12f637c809dfc4ba569acc1bc..683e42bdbc8e75851f12e80425ef81f4a9fc9d30 100644 (file)
@@ -990,13 +990,12 @@ void CWriter::printFloatingPointConstants(Function &F) {
 /// type name is found, emit it's declaration...
 ///
 void CWriter::printModuleTypes(const SymbolTable &ST) {
-  // If there are no type names, exit early.
-  if ( ! ST.hasTypes() )
-    return;
-
-  // We are only interested in the type plane of the symbol table...
+  // We are only interested in the type plane of the symbol table.
   SymbolTable::type_const_iterator I   = ST.type_begin();
   SymbolTable::type_const_iterator End = ST.type_end();
+
+  // If there are no type names, exit early.
+  if (I == End) return;
   
   // Print out forward declarations for structure types before anything else!
   Out << "/* Structure forward decls */\n";