From c0bd42523ae1233ccf32a03a22e9cca37c45524a Mon Sep 17 00:00:00 2001 From: Pete Cooper Date: Fri, 12 Jun 2015 17:48:21 +0000 Subject: [PATCH] Remove a bunch of inline keywords from User. NFC. This came up in the patch review for http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20150608/281362.html. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239624 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/IR/User.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/include/llvm/IR/User.h b/include/llvm/IR/User.h index f1aa89f3715..87be88da591 100644 --- a/include/llvm/IR/User.h +++ b/include/llvm/IR/User.h @@ -166,18 +166,18 @@ public: typedef iterator_range op_range; typedef iterator_range const_op_range; - inline op_iterator op_begin() { return getOperandList(); } - inline const_op_iterator op_begin() const { return getOperandList(); } - inline op_iterator op_end() { + op_iterator op_begin() { return getOperandList(); } + const_op_iterator op_begin() const { return getOperandList(); } + op_iterator op_end() { return getOperandList() + NumUserOperands; } - inline const_op_iterator op_end() const { + const_op_iterator op_end() const { return getOperandList() + NumUserOperands; } - inline op_range operands() { + op_range operands() { return op_range(op_begin(), op_end()); } - inline const_op_range operands() const { + const_op_range operands() const { return const_op_range(op_begin(), op_end()); } @@ -192,13 +192,13 @@ public: Value *operator->() const { return operator*(); } }; - inline value_op_iterator value_op_begin() { + value_op_iterator value_op_begin() { return value_op_iterator(op_begin()); } - inline value_op_iterator value_op_end() { + value_op_iterator value_op_end() { return value_op_iterator(op_end()); } - inline iterator_range operand_values() { + iterator_range operand_values() { return iterator_range(value_op_begin(), value_op_end()); } -- 2.34.1