mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
Do an early exit when the result is known cheaply.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95002 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b29d596072
commit
aec0081fac
@ -492,26 +492,31 @@ namespace llvm {
|
||||
|
||||
/// bitsEq - Return true if this has the same number of bits as VT.
|
||||
bool bitsEq(EVT VT) const {
|
||||
if (EVT::operator==(VT)) return true;
|
||||
return getSizeInBits() == VT.getSizeInBits();
|
||||
}
|
||||
|
||||
/// bitsGT - Return true if this has more bits than VT.
|
||||
bool bitsGT(EVT VT) const {
|
||||
if (EVT::operator==(VT)) return false;
|
||||
return getSizeInBits() > VT.getSizeInBits();
|
||||
}
|
||||
|
||||
/// bitsGE - Return true if this has no less bits than VT.
|
||||
bool bitsGE(EVT VT) const {
|
||||
if (EVT::operator==(VT)) return true;
|
||||
return getSizeInBits() >= VT.getSizeInBits();
|
||||
}
|
||||
|
||||
/// bitsLT - Return true if this has less bits than VT.
|
||||
bool bitsLT(EVT VT) const {
|
||||
if (EVT::operator==(VT)) return false;
|
||||
return getSizeInBits() < VT.getSizeInBits();
|
||||
}
|
||||
|
||||
/// bitsLE - Return true if this has no more bits than VT.
|
||||
bool bitsLE(EVT VT) const {
|
||||
if (EVT::operator==(VT)) return true;
|
||||
return getSizeInBits() <= VT.getSizeInBits();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user