Remove unnecessary throw() specifications; LLVM doesn't use exceptions.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78667 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman
2009-08-11 15:35:57 +00:00
parent 764ab52dd8
commit 00b0a243bd
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -74,7 +74,7 @@ namespace {
PBQPRegAlloc() : MachineFunctionPass(&ID) {}
/// Return the pass name.
virtual const char* getPassName() const throw() {
virtual const char* getPassName() const {
return "PBQP Register Allocator";
}