mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-24 22:24:54 +00:00
Various tweaks related to apint codegen. No functionality
change for non-funky-sized integers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52151 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -261,6 +261,10 @@ namespace llvm {
|
||||
(isExtended() && isVector() && getSizeInBits()==128));
|
||||
}
|
||||
|
||||
/// isByteSized - Return true if the bit size is a multiple of 8.
|
||||
inline bool isByteSized() const {
|
||||
return (getSizeInBits() & 7) == 0;
|
||||
}
|
||||
|
||||
/// bitsGT - Return true if this has more bits than VT.
|
||||
inline bool bitsGT(MVT VT) const {
|
||||
|
Reference in New Issue
Block a user