aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-02-18 20:22:25 +0000
committerChris Lattner <sabre@nondot.org>2004-02-18 20:22:25 +0000
commit5dcc3664b586b7efa64959d86280586e6302fcfa (patch)
treed8a44c99c034cc9d0464929a9cca4c22275731d6 /tools
parent230fef8b11a9faa7eda31c34a22a3085e2aa8e04 (diff)
downloadexternal_llvm-5dcc3664b586b7efa64959d86280586e6302fcfa.zip
external_llvm-5dcc3664b586b7efa64959d86280586e6302fcfa.tar.gz
external_llvm-5dcc3664b586b7efa64959d86280586e6302fcfa.tar.bz2
ctor arguments changed order
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11595 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/bugpoint/BugDriver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bugpoint/BugDriver.cpp b/tools/bugpoint/BugDriver.cpp
index 0b06bc3..08f2bb5 100644
--- 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.