diff options
author | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-07-12 20:07:09 +0000 |
---|---|---|
committer | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-07-12 20:07:09 +0000 |
commit | 3c802a1ee3b6d6927e326e8dd7456f010890fd9b (patch) | |
tree | 21eb9d2f9d7caf8b2acedb119c2bc797c1c3644e /gcc/c-family/c-ada-spec.c | |
parent | f1e45f6838ad5e1d7650b83c5e9b1aca445f58f0 (diff) | |
download | gcc-3c802a1ee3b6d6927e326e8dd7456f010890fd9b.tar.gz |
* cse.c (insert_with_costs): Put semi-colon after empty loop body
on the next line.
* emit-rtl.c (push_to_sequence): Likewise.
* haifa-sched.c (max_issue): Likewise.
* matrix-reorg.c (add_allocation_site): Likewise.
* postreload-gcse.c (eliminate_partially_redundant_load): Likewise.
* reload.c (alternative_allows_const_pool_ref): Likewise.
* sched-rgn.c (rgn_add_block): Likewise.
(rgn_fix_recovery_cfg): Likewise.
* tree.c (attribute_list_contained): Likewise.
c-family/
* c-ada-spec.c (dump_nested_types): Put semi-colon after empty loop
body on the next line.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@176216 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-family/c-ada-spec.c')
-rw-r--r-- | gcc/c-family/c-ada-spec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/c-family/c-ada-spec.c b/gcc/c-family/c-ada-spec.c index f582e7dfb0e..c6666675ccc 100644 --- a/gcc/c-family/c-ada-spec.c +++ b/gcc/c-family/c-ada-spec.c @@ -2333,7 +2333,8 @@ dump_nested_types (pretty_printer *buffer, tree t, tree parent, bool forward, if (TREE_CODE (decl) == FUNCTION_TYPE) for (decl = TREE_TYPE (decl); decl && TREE_CODE (decl) == POINTER_TYPE; - decl = TREE_TYPE (decl)); + decl = TREE_TYPE (decl)) + ; decl = get_underlying_decl (decl); |