diff options
author | Dan Gohman <gohman@apple.com> | 2009-08-07 01:32:21 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-08-07 01:32:21 +0000 |
commit | 6d29b324f77099bf84fefbf8cb529de5141e1080 (patch) | |
tree | 30a8b3e2bea69508eb5da0dbca173cbe23052743 /lib/VMCore/PassManager.cpp | |
parent | 0f110c5cdac6100605d65d79dee4e8700088f28f (diff) | |
download | external_llvm-6d29b324f77099bf84fefbf8cb529de5141e1080.zip external_llvm-6d29b324f77099bf84fefbf8cb529de5141e1080.tar.gz external_llvm-6d29b324f77099bf84fefbf8cb529de5141e1080.tar.bz2 |
Fix a bunch of namespace pollution.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78363 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/PassManager.cpp')
-rw-r--r-- | lib/VMCore/PassManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/VMCore/PassManager.cpp b/lib/VMCore/PassManager.cpp index 7c6792f..8c42784 100644 --- a/lib/VMCore/PassManager.cpp +++ b/lib/VMCore/PassManager.cpp @@ -1582,13 +1582,13 @@ void TimingInfo::createTheTimeInfo() { } /// If TimingInfo is enabled then start pass timer. -void StartPassTimer(Pass *P) { +void llvm::StartPassTimer(Pass *P) { if (TheTimeInfo) TheTimeInfo->passStarted(P); } /// If TimingInfo is enabled then stop pass timer. -void StopPassTimer(Pass *P) { +void llvm::StopPassTimer(Pass *P) { if (TheTimeInfo) TheTimeInfo->passEnded(P); } |