AArch64: Remove implicit ilist iterator conversions, NFC
[oota-llvm.git] / lib / Target / AArch64 / AArch64FastISel.cpp
index afdd99b6ea8a40350173f067651c97454d6fc820..6530302531bcc18d247e857c5858724e084d258b 100644 (file)
@@ -3311,8 +3311,8 @@ bool AArch64FastISel::foldXALUIntrinsic(AArch64CC::CondCode &CC,
     return false;
 
   // Make sure nothing is in the way
-  BasicBlock::const_iterator Start = I;
-  BasicBlock::const_iterator End = II;
+  BasicBlock::const_iterator Start(I);
+  BasicBlock::const_iterator End(II);
   for (auto Itr = std::prev(Start); Itr != End; --Itr) {
     // We only expect extractvalue instructions between the intrinsic and the
     // instruction to be selected.