Use llvm::next() instead of incrementing begin iterators of std::vector.
authorMichael Gottesman <mgottesman@apple.com>
Wed, 4 Sep 2013 04:19:01 +0000 (04:19 +0000)
committerMichael Gottesman <mgottesman@apple.com>
Wed, 4 Sep 2013 04:19:01 +0000 (04:19 +0000)
commit30955e9afb6548c79e426e5971e06bdfd3799ee0
tree98d21e1d5051c1a55820b297171fa0097665b955
parent06351cd0ff4146fa40ba9eb76bc10c5c6cb08616
Use llvm::next() instead of incrementing begin iterators of std::vector.

Iterator of std::vector may be implemented as a raw pointer. In
this case begin iterators are rvalues and cannot be incremented.
For example, this is the case with STDCXX implementation of vector.

Patch by Konstantin Tokarev <annulen@yandex.ru>.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189911 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Target/R600/AMDILCFGStructurizer.cpp