[llvm-commits] CVS: llvm/include/llvm/Assembly/Writer.h

Chris Lattner sabre at nondot.org
Tue Dec 5 22:16:44 PST 2006



Changes in directory llvm/include/llvm/Assembly:

Writer.h updated: 1.35 -> 1.36
---
Log message:

Remove the 'printname' argument to WriteAsOperand.  It is always true, and
passing false would make the asmprinter fail anyway.


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

 Writer.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/include/llvm/Assembly/Writer.h
diff -u llvm/include/llvm/Assembly/Writer.h:1.35 llvm/include/llvm/Assembly/Writer.h:1.36
--- llvm/include/llvm/Assembly/Writer.h:1.35	Tue Dec  5 23:55:44 2006
+++ llvm/include/llvm/Assembly/Writer.h	Wed Dec  6 00:16:21 2006
@@ -38,7 +38,7 @@
 // pointer is printed symbolically.
 //
 std::ostream &WriteAsOperand(std::ostream &, const Value *, bool PrintTy = true,
-                             bool PrintName = true, const Module *Context = 0);
+                             const Module *Context = 0);
 
 } // End llvm namespace
 






More information about the llvm-commits mailing list