diff options
author | Dan Gohman <gohman@apple.com> | 2009-08-11 15:35:57 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-08-11 15:35:57 +0000 |
commit | c7c2bc9663c9e70b9e0231fee973352923ab9182 (patch) | |
tree | e35bab15a314abc922cefe0f2ebf85606a992e39 /llvm/lib/CodeGen/RegAllocPBQP.cpp | |
parent | f24f9d9cb6f5f3c70d6b26104b14e29c7dbd0720 (diff) | |
download | bcm5719-llvm-c7c2bc9663c9e70b9e0231fee973352923ab9182.tar.gz bcm5719-llvm-c7c2bc9663c9e70b9e0231fee973352923ab9182.zip |
Remove unnecessary throw() specifications; LLVM doesn't use exceptions.
llvm-svn: 78667
Diffstat (limited to 'llvm/lib/CodeGen/RegAllocPBQP.cpp')
-rw-r--r-- | llvm/lib/CodeGen/RegAllocPBQP.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/RegAllocPBQP.cpp b/llvm/lib/CodeGen/RegAllocPBQP.cpp index 9e77abc59e7..c0a7cac5ebf 100644 --- a/llvm/lib/CodeGen/RegAllocPBQP.cpp +++ b/llvm/lib/CodeGen/RegAllocPBQP.cpp @@ -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"; } |