Remove unused header and function
authorChris Lattner <sabre@nondot.org>
Tue, 14 Jan 2003 22:34:13 +0000 (22:34 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 14 Jan 2003 22:34:13 +0000 (22:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5277 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Instrumentation/EmitFunctions.cpp

index 0218a146a694a048ff7fb24a3f26604565816f14..8207424efd1fd4298e823b101348b98ee0d87cfc 100644 (file)
@@ -4,7 +4,6 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "llvm/Transforms/Instrumentation/EmitFunctions.h"
 #include "llvm/Constants.h"
 #include "llvm/DerivedTypes.h"
 #include "llvm/Constants.h"
@@ -20,12 +19,6 @@ namespace {
   RegisterOpt<EmitFunctionTable> X("emitfuncs", "Emit a Function Table");
 }
 
-// Create a new pass to add function table
-//
-Pass *createEmitFunctionTablePass() {
-  return new EmitFunctionTable();
-}
-
 // Per Module pass for inserting function table
 bool EmitFunctionTable::run(Module &M){
   vector<const Type*> vType;