diff options
author | Duraid Madina <duraid@octopus.com.au> | 2005-12-28 05:48:55 +0000 |
---|---|---|
committer | Duraid Madina <duraid@octopus.com.au> | 2005-12-28 05:48:55 +0000 |
commit | bcc57c0c1682317fc2f6b73f41419e649d2e07ea (patch) | |
tree | 5d5fa5245566034208206891d38a11de0c002546 | |
parent | e47d9d0e92035cda70c633053f170ab4de36abae (diff) | |
download | bcm5719-llvm-bcc57c0c1682317fc2f6b73f41419e649d2e07ea.tar.gz bcm5719-llvm-bcc57c0c1682317fc2f6b73f41419e649d2e07ea.zip |
WAKEY WAKEY
llvm-svn: 25032
-rw-r--r-- | llvm/tools/llc/llc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llc/llc.cpp b/llvm/tools/llc/llc.cpp index 0b631e41d53..573e9ba2b75 100644 --- a/llvm/tools/llc/llc.cpp +++ b/llvm/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. |