[llvm-commits] [poolalloc] r58519 - /poolalloc/trunk/include/dsa/DataStructure.h
Andrew Lenharth
alenhar2 at cs.uiuc.edu
Fri Oct 31 10:58:28 PDT 2008
Author: alenhar2
Date: Fri Oct 31 12:58:24 2008
New Revision: 58519
URL: http://llvm.org/viewvc/llvm-project?rev=58519&view=rev
Log:
use correct printname
Modified:
poolalloc/trunk/include/dsa/DataStructure.h
Modified: poolalloc/trunk/include/dsa/DataStructure.h
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/include/dsa/DataStructure.h?rev=58519&r1=58518&r2=58519&view=diff
==============================================================================
--- poolalloc/trunk/include/dsa/DataStructure.h (original)
+++ poolalloc/trunk/include/dsa/DataStructure.h Fri Oct 31 12:58:24 2008
@@ -347,7 +347,7 @@
public:
static char ID;
TDDataStructures(intptr_t CID = (intptr_t)&ID, const char* printname = "td.", bool useEQ = false)
- : DataStructures(CID, "td."), useEQBU(useEQ) {}
+ : DataStructures(CID, printname), useEQBU(useEQ) {}
~TDDataStructures() { releaseMemory(); }
virtual bool runOnModule(Module &M);
@@ -380,7 +380,7 @@
public:
static char ID;
EQTDDataStructures()
- :TDDataStructures((intptr_t)&ID, "td.", false)
+ :TDDataStructures((intptr_t)&ID, "eqtd.", false)
{}
};
More information about the llvm-commits
mailing list