diff options
Diffstat (limited to 'llvm/unittests/ProfileData')
-rw-r--r-- | llvm/unittests/ProfileData/MemProfTest.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/llvm/unittests/ProfileData/MemProfTest.cpp b/llvm/unittests/ProfileData/MemProfTest.cpp index abe36bc..6ea951e 100644 --- a/llvm/unittests/ProfileData/MemProfTest.cpp +++ b/llvm/unittests/ProfileData/MemProfTest.cpp @@ -26,13 +26,14 @@ #include <initializer_list> -LLVM_ABI extern llvm::cl::opt<float> MemProfLifetimeAccessDensityColdThreshold; -LLVM_ABI extern llvm::cl::opt<unsigned> MemProfAveLifetimeColdThreshold; -LLVM_ABI extern llvm::cl::opt<unsigned> +namespace llvm { + +LLVM_ABI extern cl::opt<float> MemProfLifetimeAccessDensityColdThreshold; +LLVM_ABI extern cl::opt<unsigned> MemProfAveLifetimeColdThreshold; +LLVM_ABI extern cl::opt<unsigned> MemProfMinAveLifetimeAccessDensityHotThreshold; -LLVM_ABI extern llvm::cl::opt<bool> MemProfUseHotHints; +LLVM_ABI extern cl::opt<bool> MemProfUseHotHints; -namespace llvm { namespace memprof { namespace { |