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

llvm-svn: 78667
This commit is contained in:
Dan Gohman 2009-08-11 15:35:57 +00:00
parent f24f9d9cb6
commit c7c2bc9663
2 changed files with 4 additions and 4 deletions

View File

@ -52,7 +52,7 @@ class Vector {
}
/// \brief Return the length of the vector
unsigned getLength() const throw () {
unsigned getLength() const {
return length;
}
@ -143,10 +143,10 @@ class Matrix {
}
/// \brief Return the number of rows in this matrix.
unsigned getRows() const throw () { return rows; }
unsigned getRows() const { return rows; }
/// \brief Return the number of cols in this matrix.
unsigned getCols() const throw () { return cols; }
unsigned getCols() const { return cols; }
/// \brief Matrix element access.
PBQPNum* operator[](unsigned r) {

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";
}