aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/CommandFlags.cpp
diff options
context:
space:
mode:
authorKazu Hirata <kazu@google.com>2024-09-25 12:34:43 -0700
committerKazu Hirata <kazu@google.com>2024-09-25 12:34:43 -0700
commit639a0afa9955a8613902e46e168767bc05c46cdd (patch)
tree6019e52986dad7fa3b6440574413ab42db1df05d /llvm/lib/CodeGen/CommandFlags.cpp
parent1911a50fae8a441b445eb835b98950710d28fc88 (diff)
downloadllvm-639a0afa9955a8613902e46e168767bc05c46cdd.zip
llvm-639a0afa9955a8613902e46e168767bc05c46cdd.tar.gz
llvm-639a0afa9955a8613902e46e168767bc05c46cdd.tar.bz2
Revert "Deprecate the `-fbasic-block-sections=labels` option. (#107494)"
This reverts commit 1911a50fae8a441b445eb835b98950710d28fc88. Several bots are failing: https://lab.llvm.org/buildbot/#/builders/190/builds/6519 https://lab.llvm.org/buildbot/#/builders/3/builds/5248 https://lab.llvm.org/buildbot/#/builders/18/builds/4463
Diffstat (limited to 'llvm/lib/CodeGen/CommandFlags.cpp')
-rw-r--r--llvm/lib/CodeGen/CommandFlags.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/CommandFlags.cpp b/llvm/lib/CodeGen/CommandFlags.cpp
index d180cfc..9e42deb 100644
--- a/llvm/lib/CodeGen/CommandFlags.cpp
+++ b/llvm/lib/CodeGen/CommandFlags.cpp
@@ -525,6 +525,8 @@ llvm::BasicBlockSection
codegen::getBBSectionsMode(llvm::TargetOptions &Options) {
if (getBBSections() == "all")
return BasicBlockSection::All;
+ else if (getBBSections() == "labels")
+ return BasicBlockSection::Labels;
else if (getBBSections() == "none")
return BasicBlockSection::None;
else {