[llvm] r204025 - Deleted copy-constructor/copy-assignment broke a buildbot. Removing while I

Lang Hames lhames at gmail.com
Sun Mar 16 18:51:51 PDT 2014


Author: lhames
Date: Sun Mar 16 20:51:51 2014
New Revision: 204025

URL: http://llvm.org/viewvc/llvm-project?rev=204025&view=rev
Log:
Deleted copy-constructor/copy-assignment broke a buildbot. Removing while I
investigate.

Modified:
    llvm/trunk/include/llvm/CodeGen/PBQP/RegAllocSolver.h

Modified: llvm/trunk/include/llvm/CodeGen/PBQP/RegAllocSolver.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/PBQP/RegAllocSolver.h?rev=204025&r1=204024&r2=204025&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/PBQP/RegAllocSolver.h (original)
+++ llvm/trunk/include/llvm/CodeGen/PBQP/RegAllocSolver.h Sun Mar 16 20:51:51 2014
@@ -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),





More information about the llvm-commits mailing list