1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-25 22:12:57 +02:00
llvm-mirror/include/llvm/Transforms/Instrumentation/EmitFunctions.h
Anand Shukla d2ebe872e1 initial version: for emitfuncs pass
llvm-svn: 2886
2002-07-12 20:28:22 +00:00

17 lines
428 B
C++

//===-- 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