mirror of git://gcc.gnu.org/git/gcc.git
[Patch onbious] Fix indentation in c-typeck.c parser_build_unary_op
gcc/c/ * c-typeck.c (parser_build_unary_op): Fix formatting. From-SVN: r236313
This commit is contained in:
parent
e6bd9fb931
commit
e989235095
|
@ -1,3 +1,7 @@
|
||||||
|
2016-05-17 James Greenhalgh <james.greenhalgh@arm.com>
|
||||||
|
|
||||||
|
* c-typeck.c (parser_build_unary_op): Fix formatting.
|
||||||
|
|
||||||
2016-05-16 Matthew Wahab <matthew.wahab@arm.com>
|
2016-05-16 Matthew Wahab <matthew.wahab@arm.com>
|
||||||
|
|
||||||
* c-decl.c (grokdeclarator): Remove errmsg and use of
|
* c-decl.c (grokdeclarator): Remove errmsg and use of
|
||||||
|
|
|
@ -3491,8 +3491,8 @@ parser_build_unary_op (location_t loc, enum tree_code code, struct c_expr arg)
|
||||||
{
|
{
|
||||||
result.value = build_unary_op (loc, code, arg.value, 0);
|
result.value = build_unary_op (loc, code, arg.value, 0);
|
||||||
|
|
||||||
if (TREE_OVERFLOW_P (result.value) && !TREE_OVERFLOW_P (arg.value))
|
if (TREE_OVERFLOW_P (result.value) && !TREE_OVERFLOW_P (arg.value))
|
||||||
overflow_warning (loc, result.value);
|
overflow_warning (loc, result.value);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* We are typically called when parsing a prefix token at LOC acting on
|
/* We are typically called when parsing a prefix token at LOC acting on
|
||||||
|
|
Loading…
Reference in New Issue