mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
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
This commit is contained in:
parent
717b36b1d6
commit
f6c2ab8a0e
@ -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),
|
||||
|
Loading…
x
Reference in New Issue
Block a user