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
diff --git a/lib/CodeGen/RegAllocPBQP.cpp b/lib/CodeGen/RegAllocPBQP.cpp
index 9e77abc..c0a7cac 100644
--- a/lib/CodeGen/RegAllocPBQP.cpp
+++ b/lib/CodeGen/RegAllocPBQP.cpp
@@ -74,7 +74,7 @@
PBQPRegAlloc() : MachineFunctionPass(&ID) {}
/// Return the pass name.
- virtual const char* getPassName() const throw() {
+ virtual const char* getPassName() const {
return "PBQP Register Allocator";
}