print aliases before functions
authorChris Lattner <sabre@nondot.org>
Thu, 26 Apr 2007 02:24:10 +0000 (02:24 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 26 Apr 2007 02:24:10 +0000 (02:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36459 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/AsmWriter.cpp

index ec9a5539b9fa3aafd1d37b763a37c9a58c23d708..8834e1e2a22411eb720a725f29e3926c5eb05257 100644 (file)
@@ -848,15 +848,16 @@ void AssemblyWriter::printModule(const Module *M) {
   for (Module::const_global_iterator I = M->global_begin(), E = M->global_end();
        I != E; ++I)
     printGlobal(I);
+  
+  // Output all aliases.
+  if (!M->alias_empty()) Out << "\n";
+  for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end();
+       I != E; ++I)
+    printAlias(I);
 
   // Output all of the functions.
   for (Module::const_iterator I = M->begin(), E = M->end(); I != E; ++I)
     printFunction(I);
-
-  // Output all aliases
-  for (Module::const_alias_iterator I = M->alias_begin(), E = M->alias_end();
-       I != E; ++I)
-    printAlias(I);
 }
 
 void AssemblyWriter::printGlobal(const GlobalVariable *GV) {