diff options
author | Lang Hames <lhames@gmail.com> | 2015-01-09 18:55:42 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2015-01-09 18:55:42 +0000 |
commit | 1e923ec1225be4d1c48db75ef8c84866abef75ba (patch) | |
tree | 95f2ff912b1233641708a503d5f7e3482d1b90d2 /llvm/lib/MC/MCAsmInfo.cpp | |
parent | d527199c378995a3f9d1fdfc45689a77999e53e4 (diff) | |
download | bcm5719-llvm-1e923ec1225be4d1c48db75ef8c84866abef75ba.tar.gz bcm5719-llvm-1e923ec1225be4d1c48db75ef8c84866abef75ba.zip |
Recommit r224935 with a fix for the ObjC++/AArch64 bug that that revision
introduced.
A test case for the bug was already committed in r225385.
Patch by Rafael Espindola.
llvm-svn: 225534
Diffstat (limited to 'llvm/lib/MC/MCAsmInfo.cpp')
-rw-r--r-- | llvm/lib/MC/MCAsmInfo.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/MC/MCAsmInfo.cpp b/llvm/lib/MC/MCAsmInfo.cpp index 6fe2804e30a..04b804209a7 100644 --- a/llvm/lib/MC/MCAsmInfo.cpp +++ b/llvm/lib/MC/MCAsmInfo.cpp @@ -109,6 +109,10 @@ MCAsmInfo::MCAsmInfo() { MCAsmInfo::~MCAsmInfo() { } +bool MCAsmInfo::isSectionAtomizableBySymbols(const MCSection &Section) const { + return false; +} + const MCExpr * MCAsmInfo::getExprForPersonalitySymbol(const MCSymbol *Sym, unsigned Encoding, |