From 5dcc3664b586b7efa64959d86280586e6302fcfa Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 18 Feb 2004 20:22:25 +0000 Subject: [PATCH] ctor arguments changed order git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11595 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/bugpoint/BugDriver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bugpoint/BugDriver.cpp b/tools/bugpoint/BugDriver.cpp index 0b06bc3fdbd..08f2bb5a0b1 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.