Remove a bunch of inline keywords from User. NFC.
authorPete Cooper <peter_cooper@apple.com>
Fri, 12 Jun 2015 17:48:21 +0000 (17:48 +0000)
committerPete Cooper <peter_cooper@apple.com>
Fri, 12 Jun 2015 17:48:21 +0000 (17:48 +0000)
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

index f1aa89f37152946535b08fa534eaec692d64eedb..87be88da591e3250a9d13ea8921a72365b305fa2 100644 (file)
@@ -166,18 +166,18 @@ public:
   typedef iterator_range<op_iterator> op_range;
   typedef iterator_range<const_op_iterator> 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<value_op_iterator> operand_values() {
+  iterator_range<value_op_iterator> operand_values() {
     return iterator_range<value_op_iterator>(value_op_begin(), value_op_end());
   }