diff options
author | Reid Kleckner <reid@kleckner.net> | 2015-07-14 00:11:08 +0000 |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2015-07-14 00:11:08 +0000 |
commit | 486fa3977a01d77b06dcb2f8ff918f626a563a0d (patch) | |
tree | 949948ad99eed11b374e0b4b983e957550414f52 /llvm/lib/Transforms | |
parent | 3e1ccbe8ba8ac463cde33f8627f78a32b120e68d (diff) | |
download | bcm5719-llvm-486fa3977a01d77b06dcb2f8ff918f626a563a0d.tar.gz bcm5719-llvm-486fa3977a01d77b06dcb2f8ff918f626a563a0d.zip |
Update enforceKnownAlignment after the isWeakForLinker semantic change
Previously we would refrain from attempting to increase the linkage of
available_externally globals because they were considered weak for the
linker. Now they are treated more like a declaration instead of a weak
definition.
This was causing SSE alignment faults in Chromuim, when some code
assumed it could increase the alignment of a dllimported global that it
didn't control. http://crbug.com/509256
llvm-svn: 242091
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/Utils/Local.cpp | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/llvm/lib/Transforms/Utils/Local.cpp b/llvm/lib/Transforms/Utils/Local.cpp index 56085579b61..50ca6234d0b 100644 --- a/llvm/lib/Transforms/Utils/Local.cpp +++ b/llvm/lib/Transforms/Utils/Local.cpp @@ -900,13 +900,10 @@ static unsigned enforceKnownAlignment(Value *V, unsigned Align, if (auto *GO = dyn_cast<GlobalObject>(V)) { // If there is a large requested alignment and we can, bump up the alignment - // of the global. - if (GO->isDeclaration()) - return Align; - // If the memory we set aside for the global may not be the memory used by - // the final program then it is impossible for us to reliably enforce the - // preferred alignment. - if (GO->isWeakForLinker()) + // of the global. If the memory we set aside for the global may not be the + // memory used by the final program then it is impossible for us to reliably + // enforce the preferred alignment. + if (!GO->isStrongDefinitionForLinker()) return Align; if (GO->getAlignment() >= PrefAlign) |