Deleted Added
full compact
MipsTargetMachine.cpp (195098) MipsTargetMachine.cpp (195340)
1//===-- MipsTargetMachine.cpp - Define TargetMachine for Mips -------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 120 unchanged lines hidden (view full) ---

129
130// Implements the AssemblyEmitter for the target. Must return
131// true if AssemblyEmitter is supported
132bool MipsTargetMachine::
133addAssemblyEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
134 bool Verbose, raw_ostream &Out) {
135 // Output assembly language.
136 assert(AsmPrinterCtor && "AsmPrinter was not linked in");
1//===-- MipsTargetMachine.cpp - Define TargetMachine for Mips -------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 120 unchanged lines hidden (view full) ---

129
130// Implements the AssemblyEmitter for the target. Must return
131// true if AssemblyEmitter is supported
132bool MipsTargetMachine::
133addAssemblyEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
134 bool Verbose, raw_ostream &Out) {
135 // Output assembly language.
136 assert(AsmPrinterCtor && "AsmPrinter was not linked in");
137 PM.add(AsmPrinterCtor(Out, *this, OptLevel, Verbose));
137 PM.add(AsmPrinterCtor(Out, *this, Verbose));
138 return false;
139}
138 return false;
139}