Eliminate asm parser's dependency on TargetMachine:
[oota-llvm.git] / include / llvm / Transforms / Instrumentation.h
index 9c579ac76105cd3b35d3c41b49982fda2ba10c5b..8d552317f236d0c3d59d425f13d22a2640efa5f5 100644 (file)
@@ -17,7 +17,6 @@
 namespace llvm {
 
 class ModulePass;
-class FunctionPass;
 
 // Insert edge profiling instrumentation
 ModulePass *createEdgeProfilerPass();
@@ -25,6 +24,13 @@ ModulePass *createEdgeProfilerPass();
 // Insert optimal edge profiling instrumentation
 ModulePass *createOptimalEdgeProfilerPass();
 
+// Insert path profiling instrumentation
+ModulePass *createPathProfilerPass();
+
+// Insert GCOV profiling instrumentation
+ModulePass *createGCOVProfilerPass(bool EmitNotes = true, bool EmitData = true,
+                                   bool Use402Format = false);
+
 } // End llvm namespace
 
 #endif