[IRGen] Fix the MSVC2013 build

llvm-svn: 239576
This commit is contained in:
David Majnemer 2015-06-12 00:17:26 +00:00
parent c785276b92
commit 03a9056f58
1 changed files with 2 additions and 1 deletions

View File

@ -78,7 +78,8 @@ LoopInfo::LoopInfo(BasicBlock *Header, const LoopAttributes &Attrs)
LoopID = createMetadata(Header->getContext(), Attrs);
}
void LoopInfoStack::push(BasicBlock *Header, ArrayRef<const Attr *> Attrs) {
void LoopInfoStack::push(BasicBlock *Header,
ArrayRef<const clang::Attr *> Attrs) {
for (const auto *Attr : Attrs) {
const LoopHintAttr *LH = dyn_cast<LoopHintAttr>(Attr);