[polly] r267336 - Remove unused iterators [NFC]

Johannes Doerfert via llvm-commits llvm-commits at lists.llvm.org
Sun Apr 24 05:31:04 PDT 2016


Author: jdoerfert
Date: Sun Apr 24 07:31:02 2016
New Revision: 267336

URL: http://llvm.org/viewvc/llvm-project?rev=267336&view=rev
Log:
Remove unused iterators [NFC]

Modified:
    polly/trunk/include/polly/ScopInfo.h

Modified: polly/trunk/include/polly/ScopInfo.h
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/include/polly/ScopInfo.h?rev=267336&r1=267335&r2=267336&view=diff
==============================================================================
--- polly/trunk/include/polly/ScopInfo.h (original)
+++ polly/trunk/include/polly/ScopInfo.h Sun Apr 24 07:31:02 2016
@@ -1888,19 +1888,6 @@ public:
   /// @return The corresponding isl_id or NULL otherwise.
   isl_id *getIdForParam(const SCEV *Parameter);
 
-  /// @name Parameter Iterators
-  ///
-  /// These iterators iterate over all parameters of this Scop.
-  //@{
-  typedef ParamVecType::iterator param_iterator;
-  typedef ParamVecType::const_iterator const_param_iterator;
-
-  param_iterator param_begin() { return Parameters.begin(); }
-  param_iterator param_end() { return Parameters.end(); }
-  const_param_iterator param_begin() const { return Parameters.begin(); }
-  const_param_iterator param_end() const { return Parameters.end(); }
-  //@}
-
   /// @brief Get the maximum region of this static control part.
   ///
   /// @return The maximum region of this static control part.




More information about the llvm-commits mailing list