mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Replace calls to getSizeInBits with getExtendedSizeInBits since its already known its an extended type.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164667 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4bb51cc83b
commit
542b716bbc
@ -56,31 +56,31 @@ bool EVT::isExtendedVector() const {
|
||||
}
|
||||
|
||||
bool EVT::isExtended16BitVector() const {
|
||||
return isExtendedVector() && getSizeInBits() == 16;
|
||||
return isExtendedVector() && getExtendedSizeInBits() == 16;
|
||||
}
|
||||
|
||||
bool EVT::isExtended32BitVector() const {
|
||||
return isExtendedVector() && getSizeInBits() == 32;
|
||||
return isExtendedVector() && getExtendedSizeInBits() == 32;
|
||||
}
|
||||
|
||||
bool EVT::isExtended64BitVector() const {
|
||||
return isExtendedVector() && getSizeInBits() == 64;
|
||||
return isExtendedVector() && getExtendedSizeInBits() == 64;
|
||||
}
|
||||
|
||||
bool EVT::isExtended128BitVector() const {
|
||||
return isExtendedVector() && getSizeInBits() == 128;
|
||||
return isExtendedVector() && getExtendedSizeInBits() == 128;
|
||||
}
|
||||
|
||||
bool EVT::isExtended256BitVector() const {
|
||||
return isExtendedVector() && getSizeInBits() == 256;
|
||||
return isExtendedVector() && getExtendedSizeInBits() == 256;
|
||||
}
|
||||
|
||||
bool EVT::isExtended512BitVector() const {
|
||||
return isExtendedVector() && getSizeInBits() == 512;
|
||||
return isExtendedVector() && getExtendedSizeInBits() == 512;
|
||||
}
|
||||
|
||||
bool EVT::isExtended1024BitVector() const {
|
||||
return isExtendedVector() && getSizeInBits() == 1024;
|
||||
return isExtendedVector() && getExtendedSizeInBits() == 1024;
|
||||
}
|
||||
|
||||
EVT EVT::getExtendedVectorElementType() const {
|
||||
|
Loading…
Reference in New Issue
Block a user