mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Small cleanups. No functionality change intended!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58992 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -272,6 +272,11 @@ namespace llvm {
|
||||
return BitSize >= 8 && !(BitSize & (BitSize - 1));
|
||||
}
|
||||
|
||||
/// bitsEq - Return true if this has the same number of bits as VT.
|
||||
bool bitsEq(MVT VT) const {
|
||||
return getSizeInBits() == VT.getSizeInBits();
|
||||
}
|
||||
|
||||
/// bitsGT - Return true if this has more bits than VT.
|
||||
bool bitsGT(MVT VT) const {
|
||||
return getSizeInBits() > VT.getSizeInBits();
|
||||
|
Reference in New Issue
Block a user