From: Bill Wendling Date: Sun, 10 Feb 2013 10:12:50 +0000 (+0000) Subject: Use a 'continue' here to stop from double lexing. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0f7422057e7cf0426f5bb293107b756b5de80523;p=oota-llvm.git Use a 'continue' here to stop from double lexing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174833 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AsmParser/LLParser.cpp b/lib/AsmParser/LLParser.cpp index 76eb5965ddd..9a76007bb99 100644 --- a/lib/AsmParser/LLParser.cpp +++ b/lib/AsmParser/LLParser.cpp @@ -869,7 +869,7 @@ bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B, return true; B.addAttribute(Attr, Val); - break; + continue; } // Target-independent attributes: