diff options
| author | Chris Lattner <sabre@nondot.org> | 2001-10-13 06:25:30 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2001-10-13 06:25:30 +0000 |
| commit | 2e676d616028537736a951703f9eef23ca5de4ff (patch) | |
| tree | 9b6c284bc38ef5481ff887e222176ce7bc3c2808 | |
| parent | 93f829777535d8007541acd4f999e9cb45aa140e (diff) | |
| download | bcm5719-llvm-2e676d616028537736a951703f9eef23ca5de4ff.tar.gz bcm5719-llvm-2e676d616028537736a951703f9eef23ca5de4ff.zip | |
Remove exception specification. Only slows code down.
llvm-svn: 746
| -rw-r--r-- | llvm/include/llvm/Assembly/Parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Assembly/Parser.h b/llvm/include/llvm/Assembly/Parser.h index 4dc2bfb0597..011594d1322 100644 --- a/llvm/include/llvm/Assembly/Parser.h +++ b/llvm/include/llvm/Assembly/Parser.h @@ -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 |

