Remove old frivolous uses of getStrValue in a debugging statement

llvm-svn: 2270
This commit is contained in:
Chris Lattner 2002-04-16 21:36:59 +00:00
parent 25bf874ff5
commit de9c04cff3
1 changed files with 2 additions and 2 deletions

View File

@ -144,8 +144,8 @@ void SlotCalculator::incorporateFunction(const Function *M) {
SC_DEBUG("Inserting function constants:\n";
for (constant_iterator I = constant_begin(M), E = constant_end(M);
I != E; ++I) {
cerr << " " << I->getType()->getDescription()
<< " " << I->getStrValue() << endl;
cerr << " " << *I->getType()
<< " " << *I << "\n";
});
// Emit all of the constants that are being used by the instructions in the