aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-12-03 06:33:30 +0000
committerChris Lattner <sabre@nondot.org>2002-12-03 06:33:30 +0000
commit3e80f7d9ce3fcb7532216993d633d8564104f28b (patch)
tree8c243e713c0385027f61496d5f73b0aa128483bd /tools
parentffe6eac6a21e9f8a40a3b33faecd20fd289e933a (diff)
downloadexternal_llvm-3e80f7d9ce3fcb7532216993d633d8564104f28b.zip
external_llvm-3e80f7d9ce3fcb7532216993d633d8564104f28b.tar.gz
external_llvm-3e80f7d9ce3fcb7532216993d633d8564104f28b.tar.bz2
Final tweak to printer
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4881 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/jello/jello.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/jello/jello.cpp b/tools/jello/jello.cpp
index 879076f..d2ff586 100644
--- a/tools/jello/jello.cpp
+++ b/tools/jello/jello.cpp
@@ -24,7 +24,9 @@ struct JelloMachineCodeEmitter : public MachineCodeEmitter {
std::cout << "\n**** Writing machine code for function: "
<< F.getFunction()->getName() << "\n";
}
-
+ void finishFunction(MachineFunction &F) {
+ std::cout << "\n";
+ }
void startBasicBlock(MachineBasicBlock &BB) {
std::cout << "\n--- Basic Block: " << BB.getBasicBlock()->getName() << "\n";
}