From 446f8cd8d0e09eca16540b89dadb1e3d6d8542de Mon Sep 17 00:00:00 2001 From: Duraid Madina Date: Wed, 28 Dec 2005 05:48:55 +0000 Subject: [PATCH] WAKEY WAKEY llvm-svn: 25032 --- tools/llc/llc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp index 0b631e41d53..573e9ba2b75 100644 --- a/tools/llc/llc.cpp +++ b/tools/llc/llc.cpp @@ -243,7 +243,7 @@ int main(int argc, char **argv) { << "' does not support generation of this file type!\n"; if (Out != &std::cout) delete Out; // And the Out file is empty and useless, so remove it now. - std::remove(OutputFilename.c_str()); + remove(OutputFilename.c_str()); return 1; } else { // Run our queue of passes all at once now, efficiently.