mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-17 07:34:35 +00:00
Allow CallSites to be used as the key of a map
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9660 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
15869aa2c7
commit
ac50030f86
@ -83,6 +83,10 @@ public:
|
||||
return I->op_begin()+3; // Skip Function, BB, BB
|
||||
}
|
||||
arg_iterator arg_end() const { return I->op_end(); }
|
||||
|
||||
bool operator<(const CallSite &CS) const {
|
||||
return getInstruction() < CS.getInstruction();
|
||||
}
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user