X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fllvm%2FAssembly%2FWriter.h;h=45c9513c54f512f310be63f9f863f5877701cb8e;hb=a727d5502c8e23c090da658bf14c5ebc1169a070;hp=fcd450f08d29cbfe8db2ce8923db273cd568a963;hpb=a25b3557a154fe748635ea48e85349454a9e1bcf;p=oota-llvm.git diff --git a/include/llvm/Assembly/Writer.h b/include/llvm/Assembly/Writer.h index fcd450f08d2..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. @@ -34,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