From: Chris Lattner Date: Sat, 13 Oct 2001 06:25:30 +0000 (+0000) Subject: Remove exception specification. Only slows code down. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0f0dc4e47cb13628231928a620d8c514275d3e74;p=oota-llvm.git Remove exception specification. Only slows code down. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@746 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Assembly/Parser.h b/include/llvm/Assembly/Parser.h index 4dc2bfb0597..011594d1322 100644 --- a/include/llvm/Assembly/Parser.h +++ b/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