From 9b457e1c7367b750bea36bb7d02890f9c01ae9df Mon Sep 17 00:00:00 2001
From: Chris Lattner <sabre@nondot.org>
Date: Mon, 15 Nov 2004 21:56:33 +0000
Subject: [PATCH] Disable this change, it was premature

llvm-svn: 17857
---
 llvm/lib/Bytecode/Writer/Writer.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/llvm/lib/Bytecode/Writer/Writer.cpp b/llvm/lib/Bytecode/Writer/Writer.cpp
index 2550d107c3e9..7d578f966e10 100644
--- a/llvm/lib/Bytecode/Writer/Writer.cpp
+++ b/llvm/lib/Bytecode/Writer/Writer.cpp
@@ -942,12 +942,12 @@ void BytecodeWriter::outputInstructions(const Function *F) {
 }
 
 void BytecodeWriter::outputFunction(const Function *F) {
-  // If this is an external function, there is nothing else to emit!
-  if (F->isExternal()) return;
-
   BytecodeBlock FunctionBlock(BytecodeFormat::FunctionBlockID, *this);
   output_vbr(getEncodedLinkage(F));
 
+  // If this is an external function, there is nothing else to emit!
+  if (F->isExternal()) return;
+
   // Get slot information about the function...
   Table.incorporateFunction(F);