From b1ea9807ea465ffdb4d7d1787ba06755b1b33e1f Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Sun, 10 Feb 2013 10:12:50 +0000 Subject: [PATCH] Use a 'continue' here to stop from double lexing. llvm-svn: 174833 --- llvm/lib/AsmParser/LLParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/AsmParser/LLParser.cpp b/llvm/lib/AsmParser/LLParser.cpp index 76eb596..9a76007 100644 --- a/llvm/lib/AsmParser/LLParser.cpp +++ b/llvm/lib/AsmParser/LLParser.cpp @@ -869,7 +869,7 @@ bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B, return true; B.addAttribute(Attr, Val); - break; + continue; } // Target-independent attributes: -- 2.7.4