Remove exception specification. Only slows code down.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@746 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2001-10-13 06:25:30 +00:00
parent c5a22ce2b9
commit 0f0dc4e47c

View File

@ -16,7 +16,7 @@ class ParseException;
// The useful interface defined by this file... Parse an ascii file, and return // The useful interface defined by this file... Parse an ascii file, and return
// the internal representation in a nice slice'n'dice'able representation. // 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 // Helper Classes