mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-04 08:41:49 +00:00
New header
llvm-svn: 5280
This commit is contained in:
parent
bdf60b4ad8
commit
e70dc51f5c
19
include/llvm/Transforms/Instrumentation.h
Normal file
19
include/llvm/Transforms/Instrumentation.h
Normal 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
|
Loading…
x
Reference in New Issue
Block a user