projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
230fef8
)
ctor arguments changed order
author
Chris Lattner
<sabre@nondot.org>
Wed, 18 Feb 2004 20:22:25 +0000
(20:22 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Wed, 18 Feb 2004 20:22:25 +0000
(20:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11595
91177308
-0d34-0410-b5e6-
96231b3b80d8
tools/bugpoint/BugDriver.cpp
patch
|
blob
|
history
diff --git
a/tools/bugpoint/BugDriver.cpp
b/tools/bugpoint/BugDriver.cpp
index 0b06bc3fdbd7500ef5e7d8f9d3673e2837e5f19e..08f2bb5a0b1abac8648f7622ed9409afc5eaf93c 100644
(file)
--- a/
tools/bugpoint/BugDriver.cpp
+++ b/
tools/bugpoint/BugDriver.cpp
@@
-151,7
+151,7
@@
bool BugDriver::run() {
// Make sure the reference output file gets deleted on exit from this
// function, if appropriate.
- FileRemover RemoverInstance(
CreatedOutput, ReferenceOutputFile
);
+ FileRemover RemoverInstance(
ReferenceOutputFile, CreatedOutput
);
// Diff the output of the raw program against the reference output. If it
// matches, then we have a miscompilation bug.