aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuis Machado <luis.machado@linaro.org>2019-10-17 00:37:05 +0000
committerLuis Machado <luisgpm@gcc.gnu.org>2019-10-17 00:37:05 +0000
commit24baab8af424826d87c992592944ddef7bfa2e93 (patch)
treebcd8de52b8ea63351e874bd7c42aeb2ef4e4270f
parentf347c16be21bcb7ade7a495bb17f6321fa494f05 (diff)
downloadgcc-24baab8af424826d87c992592944ddef7bfa2e93.zip
gcc-24baab8af424826d87c992592944ddef7bfa2e93.tar.gz
gcc-24baab8af424826d87c992592944ddef7bfa2e93.tar.bz2
Fix old file reference in gcc/cp/cp-gimplify.c
I've found this stale reference while looking at cp-gimplify.c. tree-gimple.c no longer exists and its contents were merged into gimple.c. Seems obvious enough. gcc/cp/ChangeLog: 2019-10-16 Luis Machado <luis.machado@linaro.org> * cp-gimplify.c: Fix reference to non-existing tree-gimple.c file. From-SVN: r277089
-rw-r--r--gcc/cp/ChangeLog4
-rw-r--r--gcc/cp/cp-gimplify.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 6c1e6b4..679c26d 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,7 @@
+2019-10-16 Luis Machado <luis.machado@linaro.org>
+
+ * cp-gimplify.c: Fix reference to non-existing tree-gimple.c file.
+
2019-10-16 Jakub Jelinek <jakub@redhat.com>
* decl.c (cxx_maybe_build_cleanup): When clearing location of cleanup,
diff --git a/gcc/cp/cp-gimplify.c b/gcc/cp/cp-gimplify.c
index 154fa70..0ab0438 100644
--- a/gcc/cp/cp-gimplify.c
+++ b/gcc/cp/cp-gimplify.c
@@ -1,4 +1,4 @@
-/* C++-specific tree lowering bits; see also c-gimplify.c and tree-gimple.c.
+/* C++-specific tree lowering bits; see also c-gimplify.c and gimple.c.
Copyright (C) 2002-2019 Free Software Foundation, Inc.
Contributed by Jason Merrill <jason@redhat.com>