Remove exception specification. Only slows code down.

llvm-svn: 746
This commit is contained in:
Chris Lattner 2001-10-13 06:25:30 +00:00
parent 93f8297775
commit 2e676d6160
1 changed files with 1 additions and 1 deletions

View 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