diff options
| author | Fangrui Song <i@maskray.me> | 2023-02-14 00:09:44 -0800 |
|---|---|---|
| committer | Fangrui Song <i@maskray.me> | 2023-02-14 00:09:44 -0800 |
| commit | 1e6921131aa46fae65344f057c6bb40610a43443 (patch) | |
| tree | 806cda7af30427fb0e88b71b87312988f0e9a034 /llvm/lib/CodeGen/BasicBlockSections.cpp | |
| parent | 4f0eb57222deae1df329539e8179bc95d4f4df6d (diff) | |
| download | llvm-1e6921131aa46fae65344f057c6bb40610a43443.zip llvm-1e6921131aa46fae65344f057c6bb40610a43443.tar.gz llvm-1e6921131aa46fae65344f057c6bb40610a43443.tar.bz2 | |
Move global namespace cl::opt inside llvm::
Diffstat (limited to 'llvm/lib/CodeGen/BasicBlockSections.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/BasicBlockSections.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/BasicBlockSections.cpp b/llvm/lib/CodeGen/BasicBlockSections.cpp index e7e7360..0325dc0 100644 --- a/llvm/lib/CodeGen/BasicBlockSections.cpp +++ b/llvm/lib/CodeGen/BasicBlockSections.cpp @@ -91,7 +91,7 @@ cl::opt<std::string> llvm::BBSectionsColdTextPrefix( cl::desc("The text prefix to use for cold basic block clusters"), cl::init(".text.split."), cl::Hidden); -cl::opt<bool> BBSectionsDetectSourceDrift( +static cl::opt<bool> BBSectionsDetectSourceDrift( "bbsections-detect-source-drift", cl::desc("This checks if there is a fdo instr. profile hash " "mismatch for this function"), |
