summaryrefslogtreecommitdiff
path: root/tools/bugpoint/OptimizerDriver.cpp
diff options
context:
space:
mode:
authorJeff Cohen <jeffc@jolt-lang.org>2005-04-22 04:13:13 +0000
committerJeff Cohen <jeffc@jolt-lang.org>2005-04-22 04:13:13 +0000
commitea3e5e56fdc56e5c2ddafb36eab26676e137dfa0 (patch)
treef23482992bd435bcc1d66835454d8d21e04b98ad /tools/bugpoint/OptimizerDriver.cpp
parent3c94497ec7852eccd68c1bc1663e8ac2a7bb1ab9 (diff)
downloadllvm-ea3e5e56fdc56e5c2ddafb36eab26676e137dfa0.tar.gz
llvm-ea3e5e56fdc56e5c2ddafb36eab26676e137dfa0.tar.bz2
llvm-ea3e5e56fdc56e5c2ddafb36eab26676e137dfa0.tar.xz
Eliminate tabs and trailing spaces
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21441 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/OptimizerDriver.cpp')
-rw-r--r--tools/bugpoint/OptimizerDriver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/bugpoint/OptimizerDriver.cpp b/tools/bugpoint/OptimizerDriver.cpp
index 7feccab6ba..5de70be291 100644
--- a/tools/bugpoint/OptimizerDriver.cpp
+++ b/tools/bugpoint/OptimizerDriver.cpp
@@ -43,7 +43,7 @@ using namespace llvm;
/// file. If an error occurs, true is returned.
///
bool BugDriver::writeProgramToFile(const std::string &Filename,
- Module *M) const {
+ Module *M) const {
std::ios::openmode io_mode = std::ios::out | std::ios::trunc |
std::ios::binary;
std::ofstream Out(Filename.c_str(), io_mode);
@@ -127,7 +127,7 @@ static void RunChild(Module *Program,const std::vector<const PassInfo*> &Passes,
///
bool BugDriver::runPasses(const std::vector<const PassInfo*> &Passes,
std::string &OutputFilename, bool DeleteOutput,
- bool Quiet) const{
+ bool Quiet) const{
std::cout << std::flush;
sys::Path uniqueFilename("bugpoint-output.bc");
uniqueFilename.makeUnique();