Remove exception specification. Only slows code down.
authorChris Lattner <sabre@nondot.org>
Sat, 13 Oct 2001 06:25:30 +0000 (06:25 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 13 Oct 2001 06:25:30 +0000 (06:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@746 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Assembly/Parser.h

index 4dc2bfb05976388926105effc4979dbe2129fd2c..011594d132241d3013964dbf900cbc7bf45a6ff4 100644 (file)
@@ -16,7 +16,7 @@ class ParseException;
 // The useful interface defined by this file... Parse an ascii file, and return
 // the internal representation in a nice slice'n'dice'able representation.
 //
-Module *ParseAssemblyFile(const string &Filename) throw (ParseException);
+Module *ParseAssemblyFile(const string &Filename);// throw (ParseException);
 
 //===------------------------------------------------------------------------===
 //                              Helper Classes