From: Brian Gaeke Date: Thu, 30 Sep 2004 20:14:29 +0000 (+0000) Subject: Add accessor function. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f098ced8486cad297ee633433709ed1424a745d3;p=oota-llvm.git Add accessor function. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16622 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Instrumentation/ProfilePaths/CombineBranch.cpp b/lib/Transforms/Instrumentation/ProfilePaths/CombineBranch.cpp index fe2839b3251..9bb220ca771 100644 --- a/lib/Transforms/Instrumentation/ProfilePaths/CombineBranch.cpp +++ b/lib/Transforms/Instrumentation/ProfilePaths/CombineBranch.cpp @@ -181,4 +181,8 @@ bool CombineBranches::runOnFunction(Function &F){ return true; // FIXME: assumes a modification was always made. } +FunctionPass *createCombineBranchesPass () { + return new CombineBranches(); +} + } // End llvm namespace diff --git a/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp b/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp index 56a20730b78..e608174a171 100644 --- a/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp +++ b/lib/Transforms/Instrumentation/ProfilePaths/InstLoops.cpp @@ -176,4 +176,8 @@ bool InstLoops::runOnFunction(Function &F){ return true; // Function was modified. } +FunctionPass *createLoopInstrumentationPass () { + return new InstLoops(); +} + } // End llvm namespace