diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-02-10 10:12:50 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-02-10 10:12:50 +0000 |
commit | b1ea9807ea465ffdb4d7d1787ba06755b1b33e1f (patch) | |
tree | e636639cbb072ad10c8671df32ab505d058b5e28 | |
parent | ff842945670930d9caa542fe9e34c2e22c893ad9 (diff) | |
download | bcm5719-llvm-b1ea9807ea465ffdb4d7d1787ba06755b1b33e1f.tar.gz bcm5719-llvm-b1ea9807ea465ffdb4d7d1787ba06755b1b33e1f.zip |
Use a 'continue' here to stop from double lexing.
llvm-svn: 174833
-rw-r--r-- | llvm/lib/AsmParser/LLParser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/AsmParser/LLParser.cpp b/llvm/lib/AsmParser/LLParser.cpp index 76eb5965ddd..9a76007bb99 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: |