summaryrefslogtreecommitdiff
path: root/include/llvm/Assembly
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-10-13 06:25:30 +0000
committerChris Lattner <sabre@nondot.org>2001-10-13 06:25:30 +0000
commit0f0dc4e47cb13628231928a620d8c514275d3e74 (patch)
treea7942c3941c50dc5ecaf9bb51acabf369f8e21f3 /include/llvm/Assembly
parentc5a22ce2b97ca477af345ad8b4dd357fa4561fcd (diff)
downloadllvm-0f0dc4e47cb13628231928a620d8c514275d3e74.tar.gz
llvm-0f0dc4e47cb13628231928a620d8c514275d3e74.tar.bz2
llvm-0f0dc4e47cb13628231928a620d8c514275d3e74.tar.xz
Remove exception specification. Only slows code down.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@746 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Assembly')
-rw-r--r--include/llvm/Assembly/Parser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Assembly/Parser.h b/include/llvm/Assembly/Parser.h
index 4dc2bfb059..011594d132 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