diff options
author | jgreenhalgh <jgreenhalgh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-05-17 09:02:19 +0000 |
---|---|---|
committer | jgreenhalgh <jgreenhalgh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-05-17 09:02:19 +0000 |
commit | e68d7b49e636383efedc0a7c645b6551a365a2ef (patch) | |
tree | e340f8c41017fde3048af845c778dcd0f6b03d3d /gcc/c | |
parent | 2a4dbd3d67d0b82168d80f8f2e7fa7ce9811ebc5 (diff) | |
download | gcc-e68d7b49e636383efedc0a7c645b6551a365a2ef.tar.gz |
[Patch onbious] Fix indentation in c-typeck.c parser_build_unary_op
gcc/c/
* c-typeck.c (parser_build_unary_op): Fix formatting.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@236313 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c')
-rw-r--r-- | gcc/c/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/c/c-typeck.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog index 67b300a7e77..476718fa631 100644 --- a/gcc/c/ChangeLog +++ b/gcc/c/ChangeLog @@ -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> * c-decl.c (grokdeclarator): Remove errmsg and use of diff --git a/gcc/c/c-typeck.c b/gcc/c/c-typeck.c index b037f46cc77..8297aae4bd8 100644 --- a/gcc/c/c-typeck.c +++ b/gcc/c/c-typeck.c @@ -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); - if (TREE_OVERFLOW_P (result.value) && !TREE_OVERFLOW_P (arg.value)) - overflow_warning (loc, result.value); + if (TREE_OVERFLOW_P (result.value) && !TREE_OVERFLOW_P (arg.value)) + overflow_warning (loc, result.value); } /* We are typically called when parsing a prefix token at LOC acting on |