зеркало из https://github.com/microsoft/clang-1.git
remove extraneous braces
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@57814 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
8ca329c00e
Коммит
8f5421a2cf
|
@ -697,11 +697,10 @@ Parser::ExprResult Parser::ParseSimpleAsm() {
|
|||
|
||||
ExprResult Result = ParseAsmStringLiteral();
|
||||
|
||||
if (Result.isInvalid) {
|
||||
if (Result.isInvalid)
|
||||
SkipUntil(tok::r_paren);
|
||||
} else {
|
||||
else
|
||||
MatchRHSPunctuation(tok::r_paren, Loc);
|
||||
}
|
||||
|
||||
return Result;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче