[llvm-commits] CVS: llvm/tools/llvm-link/llvm-link.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sun Feb 13 11:12:51 PST 2005
Changes in directory llvm/tools/llvm-link:
llvm-link.cpp updated: 1.55 -> 1.56
---
Log message:
Print the module, not the pointer.
---
Diffs of the changes: (+1 -1)
llvm-link.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/tools/llvm-link/llvm-link.cpp
diff -u llvm/tools/llvm-link/llvm-link.cpp:1.55 llvm/tools/llvm-link/llvm-link.cpp:1.56
--- llvm/tools/llvm-link/llvm-link.cpp:1.55 Sat Jan 22 11:36:17 2005
+++ llvm/tools/llvm-link/llvm-link.cpp Sun Feb 13 13:12:31 2005
@@ -110,7 +110,7 @@
// TODO: Iterate over the -l list and link in any modules containing
// global symbols that have not been resolved so far.
- if (DumpAsm) std::cerr << "Here's the assembly:\n" << Composite.get();
+ if (DumpAsm) std::cerr << "Here's the assembly:\n" << *Composite.get();
// FIXME: cout is not binary!
std::ostream *Out = &std::cout; // Default to printing to stdout...
More information about the llvm-commits
mailing list