From 3e80f7d9ce3fcb7532216993d633d8564104f28b Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 3 Dec 2002 06:33:30 +0000 Subject: [PATCH] Final tweak to printer git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4881 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/jello/jello.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/jello/jello.cpp b/tools/jello/jello.cpp index 879076f9d62..d2ff5861e09 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"; } -- 2.34.1