diff options
| author | Chris Lattner <sabre@nondot.org> | 2001-10-13 06:37:27 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2001-10-13 06:37:27 +0000 |
| commit | fc4c5040aa39b0762768ef74941ae3f5f89d2200 (patch) | |
| tree | ade7ebdad295d01461cef1c9cc6a3b4e2be305ac /llvm/lib/AsmParser | |
| parent | 3d4b2907575bc6e70f558e448151f945a58aa7cc (diff) | |
| download | bcm5719-llvm-fc4c5040aa39b0762768ef74941ae3f5f89d2200.tar.gz bcm5719-llvm-fc4c5040aa39b0762768ef74941ae3f5f89d2200.zip | |
Remove exception specification
llvm-svn: 756
Diffstat (limited to 'llvm/lib/AsmParser')
| -rw-r--r-- | llvm/lib/AsmParser/Parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/AsmParser/Parser.cpp b/llvm/lib/AsmParser/Parser.cpp index 626fe263ad4..b487042bcb9 100644 --- a/llvm/lib/AsmParser/Parser.cpp +++ b/llvm/lib/AsmParser/Parser.cpp @@ -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 != "-") |

