mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-24 22:32:47 +00:00
Add new op_erase method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9068 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6d3906be28
commit
d7db1fb944
@ -52,6 +52,9 @@ public:
|
|||||||
/// operands list. Only use this if you know what you are doing.
|
/// operands list. Only use this if you know what you are doing.
|
||||||
///
|
///
|
||||||
op_iterator op_erase(op_iterator I) { return Operands.erase(I); }
|
op_iterator op_erase(op_iterator I) { return Operands.erase(I); }
|
||||||
|
op_iterator op_erase(op_iterator I, op_iterator E) {
|
||||||
|
return Operands.erase(I, E);
|
||||||
|
}
|
||||||
|
|
||||||
// dropAllReferences() - This function is in charge of "letting go" of all
|
// dropAllReferences() - This function is in charge of "letting go" of all
|
||||||
// objects that this User refers to. This allows one to
|
// objects that this User refers to. This allows one to
|
||||||
|
Loading…
Reference in New Issue
Block a user