Remove exception specification

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@756 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2001-10-13 06:37:27 +00:00
parent 5efbbc28f6
commit b4d22f9952

View File

@ -12,7 +12,7 @@
// 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)
FILE *F = stdin;
if (Filename != "-")