[llvm-commits] CVS: llvm/tools/llvm-as/llvm-as.cpp

Chris Lattner lattner at cs.uiuc.edu
Sun Feb 13 11:12:09 PST 2005



Changes in directory llvm/tools/llvm-as:

llvm-as.cpp updated: 1.42 -> 1.43
---
Log message:

Print the module, not the pointer.


---
Diffs of the changes:  (+1 -1)

 llvm-as.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/tools/llvm-as/llvm-as.cpp
diff -u llvm/tools/llvm-as/llvm-as.cpp:1.42 llvm/tools/llvm-as/llvm-as.cpp:1.43
--- llvm/tools/llvm-as/llvm-as.cpp:1.42	Sat Jan 22 11:36:17 2005
+++ llvm/tools/llvm-as/llvm-as.cpp	Sun Feb 13 13:11:48 2005
@@ -73,7 +73,7 @@
       return 1;
     }
   
-    if (DumpAsm) std::cerr << "Here's the assembly:\n" << M.get();
+    if (DumpAsm) std::cerr << "Here's the assembly:\n" << *M.get();
 
     if (OutputFilename != "") {   // Specified an output filename?
       if (OutputFilename != "-") {  // Not stdout?






More information about the llvm-commits mailing list