diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-10-13 20:02:15 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-10-13 20:02:15 +0000 |
commit | d3b9df02b343d27d3ce9f11668688186fc552828 (patch) | |
tree | bc150a7c246f4f8876283f4e5f39b1dc909aadca /llvm/lib/Target/AArch64/AArch64FastISel.cpp | |
parent | 34f292467580ee11d0de2353a4cd6620ef9a5eeb (diff) | |
download | bcm5719-llvm-d3b9df02b343d27d3ce9f11668688186fc552828.tar.gz bcm5719-llvm-d3b9df02b343d27d3ce9f11668688186fc552828.zip |
AArch64: Remove implicit ilist iterator conversions, NFC
llvm-svn: 250216
Diffstat (limited to 'llvm/lib/Target/AArch64/AArch64FastISel.cpp')
-rw-r--r-- | llvm/lib/Target/AArch64/AArch64FastISel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/AArch64/AArch64FastISel.cpp b/llvm/lib/Target/AArch64/AArch64FastISel.cpp index afdd99b6ea8..6530302531b 100644 --- a/llvm/lib/Target/AArch64/AArch64FastISel.cpp +++ b/llvm/lib/Target/AArch64/AArch64FastISel.cpp @@ -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. |