summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2014-03-17 01:51:51 +0000
committerLang Hames <lhames@gmail.com>2014-03-17 01:51:51 +0000
commit205accb9e68a98f528339ef8aef01247a336423a (patch)
tree429892e451ebbffe9be3d6d3dc4a57e291935e63
parent8678acd5ede8cd705228e854ad9c39b850913b2f (diff)
downloadbcm5719-llvm-205accb9e68a98f528339ef8aef01247a336423a.tar.gz
bcm5719-llvm-205accb9e68a98f528339ef8aef01247a336423a.zip
Deleted copy-constructor/copy-assignment broke a buildbot. Removing while I
investigate. llvm-svn: 204025
-rw-r--r--llvm/include/llvm/CodeGen/PBQP/RegAllocSolver.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/CodeGen/PBQP/RegAllocSolver.h b/llvm/include/llvm/CodeGen/PBQP/RegAllocSolver.h
index ae488e9afe5..79ff6b4ba9f 100644
--- a/llvm/include/llvm/CodeGen/PBQP/RegAllocSolver.h
+++ b/llvm/include/llvm/CodeGen/PBQP/RegAllocSolver.h
@@ -12,7 +12,7 @@
// optimality-preserving rules (see ReductionRules.h). When no low-degree (<3)
// nodes are present, a heuristic derived from Brigg's graph coloring approach
// is used.
-//
+//
//===----------------------------------------------------------------------===//
#ifndef LLVM_CODEGEN_PBQP_REGALLOCSOLVER_H
@@ -35,8 +35,8 @@ namespace PBQP {
/// Keeps track of the number of infinities in each row and column.
class MatrixMetadata {
private:
- MatrixMetadata(const MatrixMetadata&) = delete;
- void operator=(const MatrixMetadata&) = delete;
+ MatrixMetadata(const MatrixMetadata&);
+ void operator=(const MatrixMetadata&);
public:
MatrixMetadata(const PBQP::Matrix& M)
: WorstRow(0), WorstCol(0),
OpenPOWER on IntegriCloud