Don't repeat names in comments. Remove unused default value.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232405 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola 2015-03-16 20:02:28 +00:00
parent 3c0d9fa2d4
commit f4b6b048ad

View File

@ -724,13 +724,12 @@ public:
virtual bool mayHaveInstructions() const { return true; } virtual bool mayHaveInstructions() const { return true; }
}; };
/// createNullStreamer - Create a dummy machine code streamer, which does /// Create a dummy machine code streamer, which does nothing. This is useful for
/// nothing. This is useful for timing the assembler front end. /// timing the assembler front end.
MCStreamer *createNullStreamer(MCContext &Ctx); MCStreamer *createNullStreamer(MCContext &Ctx);
/// createAsmStreamer - Create a machine code streamer which will print out /// Create a machine code streamer which will print out assembly for the native
/// assembly for the native target, suitable for compiling with a native /// target, suitable for compiling with a native assembler.
/// assembler.
/// ///
/// \param InstPrint - If given, the instruction printer to use. If not given /// \param InstPrint - If given, the instruction printer to use. If not given
/// the MCInst representation will be printed. This method takes ownership of /// the MCInst representation will be printed. This method takes ownership of
@ -750,17 +749,15 @@ MCStreamer *createAsmStreamer(MCContext &Ctx, formatted_raw_ostream &OS,
MCInstPrinter *InstPrint, MCCodeEmitter *CE, MCInstPrinter *InstPrint, MCCodeEmitter *CE,
MCAsmBackend *TAB, bool ShowInst); MCAsmBackend *TAB, bool ShowInst);
/// createMachOStreamer - Create a machine code streamer which will generate /// Create a machine code streamer which will generate Mach-O format object
/// Mach-O format object files. /// files.
/// ///
/// Takes ownership of \p TAB and \p CE. /// Takes ownership of \p TAB and \p CE.
MCStreamer *createMachOStreamer(MCContext &Ctx, MCAsmBackend &TAB, MCStreamer *createMachOStreamer(MCContext &Ctx, MCAsmBackend &TAB,
raw_ostream &OS, MCCodeEmitter *CE, raw_ostream &OS, MCCodeEmitter *CE,
bool RelaxAll = false, bool RelaxAll, bool LabelSections = false);
bool LabelSections = false);
/// createELFStreamer - Create a machine code streamer which will generate /// Create a machine code streamer which will generate ELF format object files.
/// ELF format object files.
MCStreamer *createELFStreamer(MCContext &Ctx, MCAsmBackend &TAB, MCStreamer *createELFStreamer(MCContext &Ctx, MCAsmBackend &TAB,
raw_ostream &OS, MCCodeEmitter *CE, raw_ostream &OS, MCCodeEmitter *CE,
bool RelaxAll); bool RelaxAll);