Remove unused header
[oota-llvm.git] / include / llvm / Transforms / Instrumentation / EmitFunctions.h
1 //===-- EmitFunctions.h - interface to insert instrumentation ----*- C++ -*--=//
2 //
3 // Emits function table
4 //
5 //===----------------------------------------------------------------------===//
6
7 #ifndef LLVM_TRANSFORMS_INSTRUMENTATION_EMIT_FUNCTIONS_H
8 #define LLVM_TRANSFORMS_INSTRUMENTATION_EMIT_FUNCTIONS_H
9 #include "llvm/Pass.h"
10
11 //  Create a new pass to add function table
12 //
13 Pass *createEmitFunctionTablePass();
14
15 #endif
16