diff options
Diffstat (limited to 'include/llvm/Transforms/Instrumentation/EmitFunctions.h')
-rw-r--r-- | include/llvm/Transforms/Instrumentation/EmitFunctions.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/llvm/Transforms/Instrumentation/EmitFunctions.h b/include/llvm/Transforms/Instrumentation/EmitFunctions.h new file mode 100644 index 0000000..b792387 --- /dev/null +++ b/include/llvm/Transforms/Instrumentation/EmitFunctions.h @@ -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 + |