ctor arguments changed order
authorChris Lattner <sabre@nondot.org>
Wed, 18 Feb 2004 20:22:25 +0000 (20:22 +0000)
committerChris 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

index 0b06bc3fdbd7500ef5e7d8f9d3673e2837e5f19e..08f2bb5a0b1abac8648f7622ed9409afc5eaf93c 100644 (file)
@@ -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.