diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-06-09 06:22:00 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-06-09 06:22:00 +0000 |
commit | 525f228d95afb5a8422eadd0ef3352e4e5f93c5d (patch) | |
tree | e68032cca92b484bdab0df52eeb67560742c8163 /lib/Bytecode | |
parent | 4502b37d7a1e5144b87c6441ccb7310e5efe80d9 (diff) | |
download | external_llvm-525f228d95afb5a8422eadd0ef3352e4e5f93c5d.zip external_llvm-525f228d95afb5a8422eadd0ef3352e4e5f93c5d.tar.gz external_llvm-525f228d95afb5a8422eadd0ef3352e4e5f93c5d.tar.bz2 |
Cleanup alignment of output.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14093 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode')
-rw-r--r-- | lib/Bytecode/Analyzer/AnalyzerWrappers.cpp | 28 | ||||
-rw-r--r-- | lib/Bytecode/Reader/AnalyzerWrappers.cpp | 28 |
2 files changed, 28 insertions, 28 deletions
diff --git a/lib/Bytecode/Analyzer/AnalyzerWrappers.cpp b/lib/Bytecode/Analyzer/AnalyzerWrappers.cpp index 2a221bf..2caf069 100644 --- a/lib/Bytecode/Analyzer/AnalyzerWrappers.cpp +++ b/lib/Bytecode/Analyzer/AnalyzerWrappers.cpp @@ -202,20 +202,20 @@ void llvm::AnalyzeBytecodeBuffer( /// @brief Print BytecodeAnalysis structure to an ostream void llvm::PrintBytecodeAnalysis(BytecodeAnalysis& bca, std::ostream& Out ) { - Out << "Bytecode Analysis of " << bca.ModuleId << "\n"; - Out << " File Size:" << bca.byteSize << "\n"; - Out << " Number Of Types:" << bca.numTypes << "\n"; - Out << " Number Of Constants:" << bca.numConstants << "\n"; - Out << " Number Of Global Variables:" << bca.numGlobalVars << "\n"; - Out << " Number Of Functions:" << bca.numFunctions << "\n"; - Out << " Number Of Basic Blocks:" << bca.numBasicBlocks << "\n"; - Out << " Number Of Instructions:" << bca.numInstructions << "\n"; - Out << " Number Of Operands:" << bca.numOperands << "\n"; - Out << "Number Of Compaction Tables:" << bca.numCmpctnTables << "\n"; - Out << " Number Of Symbol Tables:" << bca.numSymTab << "\n"; - Out << " Maximum Type Slot Number:" << bca.maxTypeSlot << "\n"; - Out << " Maximum Value Slot Number:" << bca.maxValueSlot << "\n"; - Out << " Bytecode Density:" << bca.density << "\n"; + Out << " Bytecode Analysis of: " << bca.ModuleId << "\n"; + Out << " File Size: " << bca.byteSize << "\n"; + Out << " Number Of Types: " << bca.numTypes << "\n"; + Out << " Number Of Constants: " << bca.numConstants << "\n"; + Out << " Number Of Global Variables: " << bca.numGlobalVars << "\n"; + Out << " Number Of Functions: " << bca.numFunctions << "\n"; + Out << " Number Of Basic Blocks: " << bca.numBasicBlocks << "\n"; + Out << " Number Of Instructions: " << bca.numInstructions << "\n"; + Out << " Number Of Operands: " << bca.numOperands << "\n"; + Out << "Number Of Compaction Tables: " << bca.numCmpctnTables << "\n"; + Out << " Number Of Symbol Tables: " << bca.numSymTab << "\n"; + Out << " Maximum Type Slot Number: " << bca.maxTypeSlot << "\n"; + Out << " Maximum Value Slot Number: " << bca.maxValueSlot << "\n"; + Out << " Bytecode Density: " << bca.density << "\n"; if ( bca.detailedResults ) Out << "Detailed Results Not Implemented Yet.\n"; diff --git a/lib/Bytecode/Reader/AnalyzerWrappers.cpp b/lib/Bytecode/Reader/AnalyzerWrappers.cpp index 2a221bf..2caf069 100644 --- a/lib/Bytecode/Reader/AnalyzerWrappers.cpp +++ b/lib/Bytecode/Reader/AnalyzerWrappers.cpp @@ -202,20 +202,20 @@ void llvm::AnalyzeBytecodeBuffer( /// @brief Print BytecodeAnalysis structure to an ostream void llvm::PrintBytecodeAnalysis(BytecodeAnalysis& bca, std::ostream& Out ) { - Out << "Bytecode Analysis of " << bca.ModuleId << "\n"; - Out << " File Size:" << bca.byteSize << "\n"; - Out << " Number Of Types:" << bca.numTypes << "\n"; - Out << " Number Of Constants:" << bca.numConstants << "\n"; - Out << " Number Of Global Variables:" << bca.numGlobalVars << "\n"; - Out << " Number Of Functions:" << bca.numFunctions << "\n"; - Out << " Number Of Basic Blocks:" << bca.numBasicBlocks << "\n"; - Out << " Number Of Instructions:" << bca.numInstructions << "\n"; - Out << " Number Of Operands:" << bca.numOperands << "\n"; - Out << "Number Of Compaction Tables:" << bca.numCmpctnTables << "\n"; - Out << " Number Of Symbol Tables:" << bca.numSymTab << "\n"; - Out << " Maximum Type Slot Number:" << bca.maxTypeSlot << "\n"; - Out << " Maximum Value Slot Number:" << bca.maxValueSlot << "\n"; - Out << " Bytecode Density:" << bca.density << "\n"; + Out << " Bytecode Analysis of: " << bca.ModuleId << "\n"; + Out << " File Size: " << bca.byteSize << "\n"; + Out << " Number Of Types: " << bca.numTypes << "\n"; + Out << " Number Of Constants: " << bca.numConstants << "\n"; + Out << " Number Of Global Variables: " << bca.numGlobalVars << "\n"; + Out << " Number Of Functions: " << bca.numFunctions << "\n"; + Out << " Number Of Basic Blocks: " << bca.numBasicBlocks << "\n"; + Out << " Number Of Instructions: " << bca.numInstructions << "\n"; + Out << " Number Of Operands: " << bca.numOperands << "\n"; + Out << "Number Of Compaction Tables: " << bca.numCmpctnTables << "\n"; + Out << " Number Of Symbol Tables: " << bca.numSymTab << "\n"; + Out << " Maximum Type Slot Number: " << bca.maxTypeSlot << "\n"; + Out << " Maximum Value Slot Number: " << bca.maxValueSlot << "\n"; + Out << " Bytecode Density: " << bca.density << "\n"; if ( bca.detailedResults ) Out << "Detailed Results Not Implemented Yet.\n"; |