X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fllvm%2FAssembly%2FWriter.h;h=45c9513c54f512f310be63f9f863f5877701cb8e;hb=a727d5502c8e23c090da658bf14c5ebc1169a070;hp=812c41277555707425dd1303f5e89ad75dc0df72;hpb=33310b4e0737150e8763dd25d922778cf5cb0570;p=oota-llvm.git diff --git a/include/llvm/Assembly/Writer.h b/include/llvm/Assembly/Writer.h index 812c4127755..45c9513c54f 100644 --- a/include/llvm/Assembly/Writer.h +++ b/include/llvm/Assembly/Writer.h @@ -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