summaryrefslogtreecommitdiff
path: root/include
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
commitf6c2ab8a0eb448f5dca23385e5639de5532c4185 (patch)
tree72a06743fd35a9c3ce9b3833db4400eef9af4ecd /include
parent717b36b1d60a8e5d155e8014901a8c93cce04777 (diff)
downloadllvm-f6c2ab8a0eb448f5dca23385e5639de5532c4185.tar.gz
llvm-f6c2ab8a0eb448f5dca23385e5639de5532c4185.tar.bz2
llvm-f6c2ab8a0eb448f5dca23385e5639de5532c4185.tar.xz
Deleted copy-constructor/copy-assignment broke a buildbot. Removing while I
investigate. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204025 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/PBQP/RegAllocSolver.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/PBQP/RegAllocSolver.h b/include/llvm/CodeGen/PBQP/RegAllocSolver.h
index ae488e9afe..79ff6b4ba9 100644
--- a/include/llvm/CodeGen/PBQP/RegAllocSolver.h
+++ b/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),