From: Alkis Evlogimenos Date: Mon, 23 Feb 2004 18:28:35 +0000 (+0000) Subject: Remove implementation of default constructor as it is useless now. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e6394e2b625c369e9ac33c8113067d8626932fbe;p=oota-llvm.git Remove implementation of default constructor as it is useless now. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11755 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/RegAllocLinearScan.cpp b/lib/CodeGen/RegAllocLinearScan.cpp index 6144e58df8f..d4b258d1fc5 100644 --- a/lib/CodeGen/RegAllocLinearScan.cpp +++ b/lib/CodeGen/RegAllocLinearScan.cpp @@ -59,11 +59,6 @@ namespace { SpillWeights spillWeights_; public: - RA() - : prt_(NULL) { - - } - virtual const char* getPassName() const { return "Linear Scan Register Allocator"; }