Put all LLVM code into the llvm namespace, as per bug 109.
[oota-llvm.git] / include / llvm / Transforms / Instrumentation.h
1 //===- Transforms/Instrumentation.h - Instrumentation passes ----*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This files defines constructor functions for instrumentation passes.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_TRANSFORMS_INSTRUMENTATION_H
15 #define LLVM_TRANSFORMS_INSTRUMENTATION_H
16
17 namespace llvm {
18
19 class Pass;
20
21 //===----------------------------------------------------------------------===//
22 // Support for inserting LLVM code to print values at basic block and function
23 // exits.
24 //
25 Pass *createTraceValuesPassForFunction();     // Just trace function entry/exit
26 Pass *createTraceValuesPassForBasicBlocks();  // Trace BB's and methods
27
28 } // End llvm namespace
29
30 #endif