diff options
author | Tim Northover <tnorthover@apple.com> | 2013-10-25 12:49:50 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2013-10-25 12:49:50 +0000 |
commit | c8f4e5db29270fc7ed164af973ece7ba5921539b (patch) | |
tree | 65bf380bd5322d7836168c7ec3e125410bc939e6 /include/llvm/MC | |
parent | ee21bb4e87a35f1dbccc02cc408fd9dd9ecc1855 (diff) | |
download | external_llvm-c8f4e5db29270fc7ed164af973ece7ba5921539b.zip external_llvm-c8f4e5db29270fc7ed164af973ece7ba5921539b.tar.gz external_llvm-c8f4e5db29270fc7ed164af973ece7ba5921539b.tar.bz2 |
ARM: allow .thumb_func to be separated from symbol definition
When assembling, a .thumb_func directive is supposed to be applicable to the
next symbol definition, even if there are intervening directives. We were
racing ahead to try and find it, and this commit should fix the issue.
Patch by Gabor Ballabas
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193403 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC')
-rw-r--r-- | include/llvm/MC/MCTargetAsmParser.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/MC/MCTargetAsmParser.h b/include/llvm/MC/MCTargetAsmParser.h index 6e96e8b..d132a73 100644 --- a/include/llvm/MC/MCTargetAsmParser.h +++ b/include/llvm/MC/MCTargetAsmParser.h @@ -181,6 +181,8 @@ public: MCContext &Ctx) { return 0; } + + virtual void onLabelParsed(MCSymbol *Symbol) { }; }; } // End llvm namespace |