diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-02-24 15:07:20 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-02-24 15:07:20 +0000 |
commit | 7dbcdd08c29dfecd0d5b9bd89afd60d8f7e3de29 (patch) | |
tree | 82c7d9be1d91d0ecad41ae27a18afd69d152b2c2 /llvm/lib/CodeGen/RegAllocPBQP.cpp | |
parent | 7860107c7dbe338508f4433f986769a48b8431a8 (diff) | |
download | bcm5719-llvm-7dbcdd08c29dfecd0d5b9bd89afd60d8f7e3de29.tar.gz bcm5719-llvm-7dbcdd08c29dfecd0d5b9bd89afd60d8f7e3de29.zip |
Don't make F_None the default.
This will make it easier to switch the default to being binary files.
llvm-svn: 202042
Diffstat (limited to 'llvm/lib/CodeGen/RegAllocPBQP.cpp')
-rw-r--r-- | llvm/lib/CodeGen/RegAllocPBQP.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/RegAllocPBQP.cpp b/llvm/lib/CodeGen/RegAllocPBQP.cpp index 483f2e1ae86..56fdb45f4e0 100644 --- a/llvm/lib/CodeGen/RegAllocPBQP.cpp +++ b/llvm/lib/CodeGen/RegAllocPBQP.cpp @@ -595,7 +595,7 @@ bool RegAllocPBQP::runOnMachineFunction(MachineFunction &MF) { rs << round; std::string graphFileName(fqn + "." + rs.str() + ".pbqpgraph"); std::string tmp; - raw_fd_ostream os(graphFileName.c_str(), tmp); + raw_fd_ostream os(graphFileName.c_str(), tmp, sys::fs::F_None); DEBUG(dbgs() << "Dumping graph for round " << round << " to \"" << graphFileName << "\"\n"); problem->getGraph().dump(os); |