minor cleanups. Add provisions for a new standard BLOCKINFO_BLOCK
[oota-llvm.git] / include / llvm / Assembly / Writer.h
index 812c41277555707425dd1303f5e89ad75dc0df72..45c9513c54f512f310be63f9f863f5877701cb8e 100644 (file)
@@ -1,10 +1,10 @@
 //===-- llvm/Assembly/Writer.h - Printer for LLVM assembly files --*- C++ -*-=//
-// 
+//
 //                     The LLVM Compiler Infrastructure
 //
 // This file was developed by the LLVM research group and is distributed under
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 // This functionality is implemented by lib/VMCore/AsmWriter.cpp.
@@ -12,9 +12,6 @@
 // can print LLVM code at a variety of granularities, including Modules,
 // BasicBlocks, and Instructions.  This makes it useful for debugging.
 //
-// This library uses the Analysis library to figure out offsets for
-// variables in the method tables.
-//
 //===----------------------------------------------------------------------===//
 
 #ifndef LLVM_ASSEMBLY_WRITER_H
@@ -37,11 +34,11 @@ std::ostream &WriteTypeSymbolic(std::ostream &, const Type *, const Module *M);
 // 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.  If you specify a Module for context,
-// then even constants get pretty-printed; for example, the type of a null 
+// then even constants get pretty-printed; for example, the type of a null
 // 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