mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-25 16:24:23 +00:00
IntegersSubsetMapping:
Changed type of Items collection: from std::vector to std::list. Also some small fixes made in IntegersSubset.h, IntegersSubsetMapping.h and IntegersSubsetTest.cpp. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157987 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -22,6 +22,7 @@ namespace {
|
||||
class Int : public APInt {
|
||||
public:
|
||||
Int(uint64_t V) : APInt(64, V) {}
|
||||
Int(const APInt& Src) : APInt(Src) {}
|
||||
bool operator < (const APInt& RHS) const { return ult(RHS); }
|
||||
bool operator > (const APInt& RHS) const { return ugt(RHS); }
|
||||
bool operator <= (const APInt& RHS) const { return ule(RHS); }
|
||||
|
Reference in New Issue
Block a user