X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=utils%2FTableGen%2FCallingConvEmitter.h;h=7fc2507e8889da50503a6b72e5a54eaf86f39162;hb=db37e4072361bc44f2c0661cb1add90e74012b13;hp=a0bfab3e75cfe19fbb494fde306c7591f08fe349;hpb=88ee2a18a77438e3f26efc87bded672db041fe09;p=oota-llvm.git diff --git a/utils/TableGen/CallingConvEmitter.h b/utils/TableGen/CallingConvEmitter.h index a0bfab3e75c..7fc2507e888 100644 --- a/utils/TableGen/CallingConvEmitter.h +++ b/utils/TableGen/CallingConvEmitter.h @@ -2,8 +2,8 @@ // // The LLVM Compiler Infrastructure // -// This file was developed by Chris Lattner and is distributed under -// the University of Illinois Open Source License. See LICENSE.TXT for details. +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // @@ -24,14 +24,14 @@ namespace llvm { class CallingConvEmitter : public TableGenBackend { RecordKeeper &Records; public: - CallingConvEmitter(RecordKeeper &R) : Records(R) {} + explicit CallingConvEmitter(RecordKeeper &R) : Records(R) {} // run - Output the asmwriter, returning true on failure. - void run(std::ostream &o); + void run(raw_ostream &o); private: - void EmitCallingConv(Record *CC, std::ostream &O); - void EmitAction(Record *Action, unsigned Indent, std::ostream &O); + void EmitCallingConv(Record *CC, raw_ostream &O); + void EmitAction(Record *Action, unsigned Indent, raw_ostream &O); unsigned Counter; }; }