Deleted copy-constructor/copy-assignment broke a buildbot. Removing while I

investigate.

llvm-svn: 204025
This commit is contained in:
Lang Hames 2014-03-17 01:51:51 +00:00
parent 8678acd5ed
commit 205accb9e6
1 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@
// optimality-preserving rules (see ReductionRules.h). When no low-degree (<3) // optimality-preserving rules (see ReductionRules.h). When no low-degree (<3)
// nodes are present, a heuristic derived from Brigg's graph coloring approach // nodes are present, a heuristic derived from Brigg's graph coloring approach
// is used. // is used.
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//
#ifndef LLVM_CODEGEN_PBQP_REGALLOCSOLVER_H #ifndef LLVM_CODEGEN_PBQP_REGALLOCSOLVER_H
@ -35,8 +35,8 @@ namespace PBQP {
/// Keeps track of the number of infinities in each row and column. /// Keeps track of the number of infinities in each row and column.
class MatrixMetadata { class MatrixMetadata {
private: private:
MatrixMetadata(const MatrixMetadata&) = delete; MatrixMetadata(const MatrixMetadata&);
void operator=(const MatrixMetadata&) = delete; void operator=(const MatrixMetadata&);
public: public:
MatrixMetadata(const PBQP::Matrix& M) MatrixMetadata(const PBQP::Matrix& M)
: WorstRow(0), WorstCol(0), : WorstRow(0), WorstCol(0),