mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-06 23:32:27 +00:00
17 lines
428 B
C
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
|
||
|
|