aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Transforms/Instrumentation/EmitFunctions.h
blob: b7923874d514497e50885e30e66850f3c11af782 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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