diff options
author | Kazu Hirata <kazu@google.com> | 2024-09-25 12:34:43 -0700 |
---|---|---|
committer | Kazu Hirata <kazu@google.com> | 2024-09-25 12:34:43 -0700 |
commit | 639a0afa9955a8613902e46e168767bc05c46cdd (patch) | |
tree | 6019e52986dad7fa3b6440574413ab42db1df05d /llvm/lib/CodeGen/BasicBlockSections.cpp | |
parent | 1911a50fae8a441b445eb835b98950710d28fc88 (diff) | |
download | llvm-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/BasicBlockSections.cpp')
-rw-r--r-- | llvm/lib/CodeGen/BasicBlockSections.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/BasicBlockSections.cpp b/llvm/lib/CodeGen/BasicBlockSections.cpp index 1eedfc4..0071284 100644 --- a/llvm/lib/CodeGen/BasicBlockSections.cpp +++ b/llvm/lib/CodeGen/BasicBlockSections.cpp @@ -311,6 +311,11 @@ bool BasicBlockSections::handleBBSections(MachineFunction &MF) { // original layout positions and finding the original fallthroughs. MF.RenumberBlocks(); + if (BBSectionsType == BasicBlockSection::Labels) { + MF.setBBSectionsType(BBSectionsType); + return true; + } + DenseMap<UniqueBBID, BBClusterInfo> FuncClusterInfo; if (BBSectionsType == BasicBlockSection::List) { auto [HasProfile, ClusterInfo] = @@ -377,6 +382,8 @@ bool BasicBlockSections::handleBBSections(MachineFunction &MF) { // avoids the need to store basic block IDs in the BB address map section, since // they can be determined implicitly. bool BasicBlockSections::handleBBAddrMap(MachineFunction &MF) { + if (MF.getTarget().getBBSectionsType() == BasicBlockSection::Labels) + return false; if (!MF.getTarget().Options.BBAddrMap) return false; MF.RenumberBlocks(); |