summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/MachineModuleInfo.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2019-08-09 20:16:31 +0000
committerBill Wendling <isanbard@gmail.com>2019-08-09 20:16:31 +0000
commit1b104388752f66191c867380efde7bbf1f13ca80 (patch)
treeb3b661c721628693c0dd27a2d58a9997f7274096 /llvm/lib/CodeGen/MachineModuleInfo.cpp
parent8e2842cc859b0557e14955b78abe214bc1a0c3b0 (diff)
downloadbcm5719-llvm-1b104388752f66191c867380efde7bbf1f13ca80.tar.gz
bcm5719-llvm-1b104388752f66191c867380efde7bbf1f13ca80.zip
[MC] Don't recreate a label if it's already used
Summary: This patch keeps track of MCSymbols created for blocks that were referenced in inline asm. It prevents creating a new symbol which doesn't refer to the block. Inline asm may have a reference to a label. The asm parser however doesn't recognize it as a label and tries to create a new symbol. The result being that instead of the original symbol (e.g. ".Ltmp0") the parser replaces it in the inline asm with the new one (e.g. ".Ltmp00") without updating it in the symbol table. So the machine basic block retains the "old" symbol (".Ltmp0"), but the inline asm uses the new one (".Ltmp00"). Reviewers: nickdesaulniers, craig.topper Subscribers: nathanchance, javed.absar, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D65304 llvm-svn: 368477
Diffstat (limited to 'llvm/lib/CodeGen/MachineModuleInfo.cpp')
0 files changed, 0 insertions, 0 deletions
OpenPOWER on IntegriCloud