Remove old frivolous uses of getStrValue in a debugging statement

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2270 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-04-16 21:36:59 +00:00
parent a3b63668d4
commit f759c4e2a7
2 changed files with 4 additions and 4 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

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