diff options
Diffstat (limited to 'tools/llvm-as/llvm-as.cpp')
-rw-r--r-- | tools/llvm-as/llvm-as.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/llvm-as/llvm-as.cpp b/tools/llvm-as/llvm-as.cpp index 0f16db9094..b49702c32e 100644 --- a/tools/llvm-as/llvm-as.cpp +++ b/tools/llvm-as/llvm-as.cpp @@ -46,7 +46,7 @@ DisableVerify("disable-verify", cl::Hidden, int main(int argc, char **argv) { cl::ParseCommandLineOptions(argc, argv, " llvm .ll -> .bc assembler\n"); - PrintStackTraceOnErrorSignal(); + sys::PrintStackTraceOnErrorSignal(); std::ostream *Out = 0; try { @@ -110,7 +110,7 @@ int main(int argc, char **argv) { std::ios_base::trunc | std::ios_base::binary); // Make sure that the Out file gets unlinked from the disk if we get a // SIGINT - RemoveFileOnSignal(OutputFilename); + sys::RemoveFileOnSignal(OutputFilename); } } |