mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-03-06 11:29:27 +00:00
behold my standards-compliant humps!
llvm-svn: 25033
This commit is contained in:
parent
446f8cd8d0
commit
362af3db08
@ -30,6 +30,7 @@
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
#include <memory>
|
||||
#include <cstdio>
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
@ -243,7 +244,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.
|
||||
remove(OutputFilename.c_str());
|
||||
std::remove(OutputFilename.c_str());
|
||||
return 1;
|
||||
} else {
|
||||
// Run our queue of passes all at once now, efficiently.
|
||||
|
Loading…
x
Reference in New Issue
Block a user