New header

llvm-svn: 5280
This commit is contained in:
Chris Lattner 2003-01-14 22:37:41 +00:00
parent 4d0d75ef88
commit ebe979693d
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
//===- Transforms/Instrumentation.h - Instrumentation passes ----*- C++ -*-===//
//
// This files defines constructor functions for instrumentation passes.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_TRANSFORMS_INSTRUMENTATION_H
#define LLVM_TRANSFORMS_INSTRUMENTATION_H
class Pass;
//===----------------------------------------------------------------------===//
// Support for inserting LLVM code to print values at basic block and function
// exits.
//
Pass *createTraceValuesPassForFunction(); // Just trace function entry/exit
Pass *createTraceValuesPassForBasicBlocks(); // Trace BB's and methods
#endif