Clean up indentation of file body output.

Don't dump functions unless "detailedResults" is requested.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14089 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer
2004-06-09 06:16:19 +00:00
parent a670c414f7
commit 0545b3e673
2 changed files with 20 additions and 18 deletions

View File

@ -190,7 +190,7 @@ public:
GlobalValue::LinkageTypes linkage
)
{
std::cout << " BLOCK: Function {\n";
std::cout << "BLOCK: Function {\n";
std::cout << " Linkage: " << linkage << "\n";
std::cout << " Type: " << FType->getDescription() << "\n";
}
@ -199,7 +199,7 @@ public:
const Type* FType
)
{
std::cout << " } END BLOCK: Function\n";
std::cout << "} END BLOCK: Function\n";
}
virtual void handleBasicBlockBegin(
@ -305,6 +305,7 @@ void BytecodeAnalyzer::DumpBytecode(
BytecodeDumper TheHandler;
AbstractBytecodeParser TheParser(&TheHandler);
TheParser.ParseBytecode( Buf, Length, ModuleID );
if ( bca.detailedResults )
TheParser.ParseAllFunctionBodies();
}

View File

@ -190,7 +190,7 @@ public:
GlobalValue::LinkageTypes linkage
)
{
std::cout << " BLOCK: Function {\n";
std::cout << "BLOCK: Function {\n";
std::cout << " Linkage: " << linkage << "\n";
std::cout << " Type: " << FType->getDescription() << "\n";
}
@ -199,7 +199,7 @@ public:
const Type* FType
)
{
std::cout << " } END BLOCK: Function\n";
std::cout << "} END BLOCK: Function\n";
}
virtual void handleBasicBlockBegin(
@ -305,6 +305,7 @@ void BytecodeAnalyzer::DumpBytecode(
BytecodeDumper TheHandler;
AbstractBytecodeParser TheParser(&TheHandler);
TheParser.ParseBytecode( Buf, Length, ModuleID );
if ( bca.detailedResults )
TheParser.ParseAllFunctionBodies();
}