Correct type of accessor functions.
authorBrian Gaeke <gaeke@uiuc.edu>
Thu, 30 Sep 2004 20:14:18 +0000 (20:14 +0000)
committerBrian Gaeke <gaeke@uiuc.edu>
Thu, 30 Sep 2004 20:14:18 +0000 (20:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16621 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Instrumentation/TraceValues.cpp

index 1247dfcfbb55841295709696eafd8dd3141afe8b..2b1ed27c5484fc26f80b051e12bfca00da82bcb9 100644 (file)
@@ -108,16 +108,16 @@ namespace {
   RegisterOpt<BasicBlockTracer> Y("trace","Insert BB and Function trace code");
 } // end anonymous namespace
 
-
-Pass *llvm::createTraceValuesPassForFunction() {     // Just trace functions
+/// Just trace functions
+FunctionPass *llvm::createTraceValuesPassForFunction() {
   return new FunctionTracer();
 }
 
-Pass *llvm::createTraceValuesPassForBasicBlocks() {  // Trace BB's and functions
+/// Trace BB's and functions
+FunctionPass *llvm::createTraceValuesPassForBasicBlocks() {
   return new BasicBlockTracer();
 }
 
-
 // Add a prototype for external functions used by the tracing code.
 //
 void ExternalFuncs::doInitialization(Module &M) {