diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2002-12-12 05:28:39 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2002-12-12 05:28:39 +0000 |
commit | 95c3d0e0fa96666bec254d3dbc8bf6d8cd3c6834 (patch) | |
tree | 4a2d9508d9db251334f632250c2d926ce57319fd /include/llvm | |
parent | 3fc46450b75f948a206420724c4b3d9d35ee070b (diff) | |
download | external_llvm-95c3d0e0fa96666bec254d3dbc8bf6d8cd3c6834.zip external_llvm-95c3d0e0fa96666bec254d3dbc8bf6d8cd3c6834.tar.gz external_llvm-95c3d0e0fa96666bec254d3dbc8bf6d8cd3c6834.tar.bz2 |
No need to specify the class if the method is within the class declaration.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4969 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/Analysis/DataStructure.h | 4 | ||||
-rw-r--r-- | include/llvm/Analysis/DataStructure/DataStructure.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Analysis/DataStructure.h b/include/llvm/Analysis/DataStructure.h index 800df9a..391f95a 100644 --- a/include/llvm/Analysis/DataStructure.h +++ b/include/llvm/Analysis/DataStructure.h @@ -109,8 +109,8 @@ private: // outside of the SCC) into functions in the SCC. It is not supposed to touch // functions IN the SCC at all. // - DSGraph &BUDataStructures::inlineNonSCCGraphs(Function &F, - std::set<Function*> &SCCFunctions); + DSGraph &inlineNonSCCGraphs(Function &F, + std::set<Function*> &SCCFunctions); DSGraph &calculateSCCGraph(Function &F, std::set<Function*> &InlinedSCCFunctions); diff --git a/include/llvm/Analysis/DataStructure/DataStructure.h b/include/llvm/Analysis/DataStructure/DataStructure.h index 800df9a..391f95a 100644 --- a/include/llvm/Analysis/DataStructure/DataStructure.h +++ b/include/llvm/Analysis/DataStructure/DataStructure.h @@ -109,8 +109,8 @@ private: // outside of the SCC) into functions in the SCC. It is not supposed to touch // functions IN the SCC at all. // - DSGraph &BUDataStructures::inlineNonSCCGraphs(Function &F, - std::set<Function*> &SCCFunctions); + DSGraph &inlineNonSCCGraphs(Function &F, + std::set<Function*> &SCCFunctions); DSGraph &calculateSCCGraph(Function &F, std::set<Function*> &InlinedSCCFunctions); |