diff options
author | Chris Lattner <sabre@nondot.org> | 2003-09-20 14:39:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-09-20 14:39:18 +0000 |
commit | 02a3be020a6b4eedb4b489959997d23a22cdf22e (patch) | |
tree | 39fec120d7a18969260d3b96afb29bdecbcf9155 /lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp | |
parent | 894707117e718b38cdd5fbbf7b2d2ccfcbafe98b (diff) |
Rename Function::getEntryNode -> getEntryBlock
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8625 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp')
-rw-r--r-- | lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp b/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp index e94f0b7876..aa46048ae0 100644 --- a/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp +++ b/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp @@ -228,7 +228,7 @@ bool ProfilePaths::runOnFunction(Function &F){ // insert initialization code in first (entry) BB // this includes initializing r and count - insertInTopBB(&F.getEntryNode(),numPaths, rVar, threshold); + insertInTopBB(&F.getEntryBlock(), numPaths, rVar, threshold); //now process the graph: get path numbers, //get increments along different paths, |