From 03a9056f58e2f2d58fa8de12f836098f1488b29c Mon Sep 17 00:00:00 2001 From: David Majnemer Date: Fri, 12 Jun 2015 00:17:26 +0000 Subject: [PATCH] [IRGen] Fix the MSVC2013 build llvm-svn: 239576 --- clang/lib/CodeGen/CGLoopInfo.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/clang/lib/CodeGen/CGLoopInfo.cpp b/clang/lib/CodeGen/CGLoopInfo.cpp index 3254fb8..1163d63 100644 --- a/clang/lib/CodeGen/CGLoopInfo.cpp +++ b/clang/lib/CodeGen/CGLoopInfo.cpp @@ -78,7 +78,8 @@ LoopInfo::LoopInfo(BasicBlock *Header, const LoopAttributes &Attrs) LoopID = createMetadata(Header->getContext(), Attrs); } -void LoopInfoStack::push(BasicBlock *Header, ArrayRef Attrs) { +void LoopInfoStack::push(BasicBlock *Header, + ArrayRef Attrs) { for (const auto *Attr : Attrs) { const LoopHintAttr *LH = dyn_cast(Attr); -- 2.7.4