mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-14 15:39:06 +00:00
Use cast<> instead of unchecked dyn_cast<>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218085 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b7fe5814ea
commit
76f0a9224f
@ -641,7 +641,7 @@ unsigned DataLayout::getAlignment(Type *Ty, bool abi_or_pref) const {
|
||||
? getPointerABIAlignment(0)
|
||||
: getPointerPrefAlignment(0));
|
||||
case Type::PointerTyID: {
|
||||
unsigned AS = dyn_cast<PointerType>(Ty)->getAddressSpace();
|
||||
unsigned AS = cast<PointerType>(Ty)->getAddressSpace();
|
||||
return (abi_or_pref
|
||||
? getPointerABIAlignment(AS)
|
||||
: getPointerPrefAlignment(AS));
|
||||
|
Loading…
Reference in New Issue
Block a user