From: Brian Gaeke Date: Wed, 22 Dec 2004 22:33:33 +0000 (+0000) Subject: Fix the build on PowerPC/Darwin - it thought we were declaring a new X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=06c375bd1d402ddcf2ee8e34005a74a0addbd7cc;p=oota-llvm.git Fix the build on PowerPC/Darwin - it thought we were declaring a new function or something. Since FileRemover takes a const reference to sys::Path, we need to pass an actual sys::Path variable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19111 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/bugpoint/ExecutionDriver.cpp b/tools/bugpoint/ExecutionDriver.cpp index 8044f504a43..43017a6199e 100644 --- a/tools/bugpoint/ExecutionDriver.cpp +++ b/tools/bugpoint/ExecutionDriver.cpp @@ -195,7 +195,8 @@ std::string BugDriver::executeProgram(std::string OutputFile, } // Remove the temporary bytecode file when we are done. - FileRemover BytecodeFileRemover(sys::Path(BytecodeFile), CreatedBytecode); + sys::Path BytecodePath (BytecodeFile); + FileRemover BytecodeFileRemover(BytecodePath, CreatedBytecode); if (OutputFile.empty()) OutputFile = "bugpoint-execution-output";