File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -1325,16 +1325,6 @@ class CallBase : public Instruction {
1325
1325
bool arg_empty () const { return arg_end () == arg_begin (); }
1326
1326
unsigned arg_size () const { return arg_end () - arg_begin (); }
1327
1327
1328
- // Legacy API names that duplicate the above and will be removed once users
1329
- // are migrated.
1330
- iterator_range<User::op_iterator> arg_operands () {
1331
- return make_range (arg_begin (), arg_end ());
1332
- }
1333
- iterator_range<User::const_op_iterator> arg_operands () const {
1334
- return make_range (arg_begin (), arg_end ());
1335
- }
1336
- unsigned getNumArgOperands () const { return arg_size (); }
1337
-
1338
1328
Value *getArgOperand (unsigned i) const {
1339
1329
assert (i < arg_size () && " Out of bounds!" );
1340
1330
return getOperand (i);
You can’t perform that action at this time.
0 commit comments