[PATCH] D77971: [MC][X86][NFC] Disable branch align in non-text section
Kan Shengchen via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sun Apr 12 19:14:54 PDT 2020
skan marked an inline comment as done.
skan added inline comments.
================
Comment at: llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp:570
+ // We only pad in text section.
+ if (!OS.getCurrentSectionOnly()->getKind().isText())
+ return false;
----------------
LuoYuanke wrote:
> This function in only called in emitInstructionBegin and emitInstructionEnd, so there is no bug? But you want to double check that it only happen in text section. Right?
No. We can emit instruction in a non-text section, see align-branch-section-type.s
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D77971/new/
https://reviews.llvm.org/D77971
More information about the llvm-commits
mailing list