initial version: for emitfuncs pass

llvm-svn: 2886
This commit is contained in:
Anand Shukla 2002-07-12 20:28:22 +00:00
parent 1a26e82bd5
commit ede97432ae
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
//===-- EmitFunctions.h - interface to insert instrumentation ----*- C++ -*--=//
//
// Emits function table
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_TRANSFORMS_INSTRUMENTATION_EMIT_FUNCTIONS_H
#define LLVM_TRANSFORMS_INSTRUMENTATION_EMIT_FUNCTIONS_H
#include "llvm/Pass.h"
// Create a new pass to add function table
//
Pass *createEmitFunctionTablePass();
#endif