From: Reid Spencer Date: Sun, 29 Aug 2004 19:30:41 +0000 (+0000) Subject: RemoveFileOnErrorSignal is now in the llvm::sys namespace. Adjust X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=debb5f085ad6dcdafc6e939aa044852b469c8d7f;p=oota-llvm.git RemoveFileOnErrorSignal is now in the llvm::sys namespace. Adjust accordingly. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16093 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TableGen/TableGen.cpp b/utils/TableGen/TableGen.cpp index dc980a60a85..14e2352ece1 100644 --- a/utils/TableGen/TableGen.cpp +++ b/utils/TableGen/TableGen.cpp @@ -426,7 +426,7 @@ int main(int argc, char **argv) { } // Make sure the file gets removed if *gasp* tablegen crashes... - RemoveFileOnSignal(OutputFilename); + sys::RemoveFileOnSignal(OutputFilename); } try {