From 0135729303af2d69569af8cd779e9a47b4d46342 Mon Sep 17 00:00:00 2001 From: Anand Shukla Date: Fri, 12 Jul 2002 20:28:22 +0000 Subject: [PATCH] initial version: for emitfuncs pass git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2886 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../Transforms/Instrumentation/EmitFunctions.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 include/llvm/Transforms/Instrumentation/EmitFunctions.h diff --git a/include/llvm/Transforms/Instrumentation/EmitFunctions.h b/include/llvm/Transforms/Instrumentation/EmitFunctions.h new file mode 100644 index 00000000000..b7923874d51 --- /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 + -- 2.34.1