Add range for-loop iterator adapter for cases in SwitchInst.
authorOwen Anderson <resistor@mac.com>
Wed, 2 Jul 2014 05:32:13 +0000 (05:32 +0000)
committerOwen Anderson <resistor@mac.com>
Wed, 2 Jul 2014 05:32:13 +0000 (05:32 +0000)
Patch by Marcello Maggioni, reviewed by Reid Kleckner.

llvm-svn: 212163

llvm/include/llvm/IR/Instructions.h

index e0c829a..a590f5a 100644 (file)
@@ -2661,6 +2661,9 @@ public:
       assert(RHS.SI == SI && "Incompatible operators.");
       return RHS.Index != Index;
     }
+    Self &operator*() {
+      return *this;
+    }
   };
 
   typedef CaseIteratorT<const SwitchInst, const ConstantInt, const BasicBlock>
@@ -2741,6 +2744,17 @@ public:
   ConstCaseIt case_end() const {
     return ConstCaseIt(this, getNumCases());
   }
+
+  /// cases - iteration adapter for range-for loops.
+  iterator_range<CaseIt> cases() {
+    return iterator_range<CaseIt>(case_begin(), case_end());
+  }
+
+  /// cases - iteration adapter for range-for loops.
+  iterator_range<ConstCaseIt> cases() const {
+    return iterator_range<ConstCaseIt>(case_begin(), case_end());
+  }
+
   /// Returns an iterator that points to the default case.
   /// Note: this iterator allows to resolve successor only. Attempt
   /// to resolve case value causes an assertion.