mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
No functionality change. Type::isSized() can be expensive, so avoid calling it
until after other inexpensive tests. llvm-svn: 152195
This commit is contained in:
parent
d0770582f9
commit
7c4db49d7e
@ -106,16 +106,18 @@ void llvm::ComputeMaskedBits(Value *V, const APInt &Mask,
|
||||
// The address of an aligned GlobalValue has trailing zeros.
|
||||
if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
|
||||
unsigned Align = GV->getAlignment();
|
||||
if (Align == 0 && TD && GV->getType()->getElementType()->isSized()) {
|
||||
if (Align == 0 && TD) {
|
||||
if (GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV)) {
|
||||
Type *ObjectType = GVar->getType()->getElementType();
|
||||
// If the object is defined in the current Module, we'll be giving
|
||||
// it the preferred alignment. Otherwise, we have to assume that it
|
||||
// may only have the minimum ABI alignment.
|
||||
if (!GVar->isDeclaration() && !GVar->isWeakForLinker())
|
||||
Align = TD->getPreferredAlignment(GVar);
|
||||
else
|
||||
Align = TD->getABITypeAlignment(ObjectType);
|
||||
if (ObjectType->isSized()) {
|
||||
// If the object is defined in the current Module, we'll be giving
|
||||
// it the preferred alignment. Otherwise, we have to assume that it
|
||||
// may only have the minimum ABI alignment.
|
||||
if (!GVar->isDeclaration() && !GVar->isWeakForLinker())
|
||||
Align = TD->getPreferredAlignment(GVar);
|
||||
else
|
||||
Align = TD->getABITypeAlignment(ObjectType);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (Align > 0)
|
||||
|
Loading…
Reference in New Issue
Block a user