summaryrefslogtreecommitdiff
path: root/lib/AsmParser/Parser.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-10-13 06:37:27 +0000
committerChris Lattner <sabre@nondot.org>2001-10-13 06:37:27 +0000
commitb4d22f9952e05c273a27dd4f0eb2631ad3687742 (patch)
tree0202c6e48c68cd2e1f7c24d7b24431cbef2a684e /lib/AsmParser/Parser.cpp
parent5efbbc28f61f5e13180f1f1cd0ce3ae6d77e9007 (diff)
downloadllvm-b4d22f9952e05c273a27dd4f0eb2631ad3687742.tar.gz
llvm-b4d22f9952e05c273a27dd4f0eb2631ad3687742.tar.bz2
llvm-b4d22f9952e05c273a27dd4f0eb2631ad3687742.tar.xz
Remove exception specification
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@756 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser/Parser.cpp')
-rw-r--r--lib/AsmParser/Parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AsmParser/Parser.cpp b/lib/AsmParser/Parser.cpp
index 626fe263ad..b487042bcb 100644
--- a/lib/AsmParser/Parser.cpp
+++ b/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 != "-")