Removed a useless ofstream.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6547 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/MachineCodeEmitter.cpp b/lib/CodeGen/MachineCodeEmitter.cpp
index 69d6b38..af41ce4 100644
--- a/lib/CodeGen/MachineCodeEmitter.cpp
+++ b/lib/CodeGen/MachineCodeEmitter.cpp
@@ -60,27 +60,21 @@
namespace {
class FilePrinterEmitter : public MachineCodeEmitter {
- std::ofstream f, actual;
+ std::ofstream actual;
std::ostream &o;
MachineCodeEmitter &MCE;
unsigned counter;
- bool mustClose;
unsigned values[4];
public:
FilePrinterEmitter(MachineCodeEmitter &M, std::ostream &os)
- : f("lli.out"), o(os), MCE(M), counter(0), mustClose(false) {
- if (!f.good()) {
- std::cerr << "Cannot open 'lli.out' for writing\n";
- abort();
- }
+ : o(os), MCE(M), counter(0) {
openActual();
}
~FilePrinterEmitter() {
o << "\n";
actual.close();
- if (mustClose) f.close();
}
void openActual() {