From 2863fbd1783836cb12e9444d25fc0555a518d618 Mon Sep 17 00:00:00 2001 From: Alkis Evlogimenos Date: Mon, 23 Feb 2004 18:28:35 +0000 Subject: [PATCH] Remove implementation of default constructor as it is useless now. llvm-svn: 11755 --- lib/CodeGen/RegAllocLinearScan.cpp | 5 ----- 1 file changed, 5 deletions(-) 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"; }