aboutsummaryrefslogtreecommitdiff
path: root/gcc/c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/c')
-rw-r--r--gcc/c/ChangeLog5
-rw-r--r--gcc/c/gimple-parser.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog
index 63cd3d4..0f23eb3 100644
--- a/gcc/c/ChangeLog
+++ b/gcc/c/ChangeLog
@@ -1,3 +1,8 @@
+2017-06-07 Jakub Jelinek <jakub@redhat.com>
+
+ * gimple-parser.c (c_parser_parse_gimple_body): Use TDI_gimple instead
+ of TDI_generic.
+
2017-06-06 Marek Polacek <polacek@redhat.com>
PR c/79983
diff --git a/gcc/c/gimple-parser.c b/gcc/c/gimple-parser.c
index fb9a543..4a55904 100644
--- a/gcc/c/gimple-parser.c
+++ b/gcc/c/gimple-parser.c
@@ -116,7 +116,7 @@ c_parser_parse_gimple_body (c_parser *parser)
we have to go through lowering again. */
cfun->curr_properties = PROP_gimple_any;
- dump_function (TDI_generic, current_function_decl);
+ dump_function (TDI_gimple, current_function_decl);
}
/* Parse a compound statement in gimple function body.