Moved DebugValue to Value.cpp.
authorVikram S. Adve <vadve@cs.uiuc.edu>
Tue, 18 Sep 2001 12:48:16 +0000 (12:48 +0000)
committerVikram S. Adve <vadve@cs.uiuc.edu>
Tue, 18 Sep 2001 12:48:16 +0000 (12:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@606 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/AsmWriter.cpp

index f61c54713d385ae749e8102eafef28de4a9a5886..24d7cc8e7f30ad292faf0e1a62ba48e0eaba5e16 100644 (file)
 #include "llvm/SymbolTable.h"
 #include <algorithm>
 
-void DebugValue(const Value *V) {
-  cerr << V << endl;
-}
-
 // WriteAsOperand - Write the name of the specified value out to the specified
 // ostream.  This can be useful when you just want to print int %reg126, not the
 // whole instruction that generated it.
@@ -115,9 +111,9 @@ void AssemblyWriter::processModule(const Module *M) {
   
   for_each(M->gbegin(), M->gend(), 
           bind_obj(this, &AssemblyWriter::processGlobal));
-          
-  Out << "implementation\n";
 
+  Out << "implementation\n";
+  
   // Output all of the methods...
   for_each(M->begin(), M->end(), bind_obj(this,&AssemblyWriter::processMethod));
 }