From: Jeff Cohen Date: Thu, 6 Jan 2005 05:45:45 +0000 (+0000) Subject: Fix incorrect return type. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=466d9398c58fbcd13e00ebfabe340a4901be23e8;p=oota-llvm.git Fix incorrect return type. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19304 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Transforms/Instrumentation.h b/include/llvm/Transforms/Instrumentation.h index c28d3fb8d97..abd34d12974 100644 --- a/include/llvm/Transforms/Instrumentation.h +++ b/include/llvm/Transforms/Instrumentation.h @@ -26,7 +26,7 @@ ModulePass *createLoopInstrumentationPass (); FunctionPass *createCombineBranchesPass(); // Reoptimizer support pass: emit table of global functions -FunctionPass *createEmitFunctionTablePass (); +ModulePass *createEmitFunctionTablePass (); //===----------------------------------------------------------------------===//