From: David Blaikie Date: Thu, 24 May 2012 17:11:00 +0000 (+0000) Subject: Silence Clang's -Wlogical-op-parentheses warning. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4fd12a6abc89abbfcd903d82193555428e77e94c;p=platform%2Fupstream%2Fllvm.git Silence Clang's -Wlogical-op-parentheses warning. I'm not sure it's really worth expressing this as a range rather than 3 specific equalities, but it doesn't seem fundamentally wrong either. llvm-svn: 157398 --- diff --git a/llvm/lib/AsmParser/LLLexer.cpp b/llvm/lib/AsmParser/LLLexer.cpp index e718069..dabcbaa 100644 --- a/llvm/lib/AsmParser/LLLexer.cpp +++ b/llvm/lib/AsmParser/LLLexer.cpp @@ -678,7 +678,7 @@ lltok::Kind LLLexer::Lex0x() { CurPtr = TokStart + 2; char Kind; - if (CurPtr[0] >= 'K' && CurPtr[0] <= 'M' || CurPtr[0] == 'H') { + if ((CurPtr[0] >= 'K' && CurPtr[0] <= 'M') || CurPtr[0] == 'H') { Kind = *CurPtr++; } else { Kind = 'J';