aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-family
diff options
context:
space:
mode:
authorMartin Liska <mliska@suse.cz>2018-09-25 09:11:05 +0200
committerMartin Liska <marxin@gcc.gnu.org>2018-09-25 07:11:05 +0000
commit87677ac7fbe12cd180e4a3c0ab4c209e08df98e8 (patch)
treee40f3d9ebb93109e7c06cd10f7182fd7322768b7 /gcc/c-family
parent4cac9d00e93a40c7b19f0060b8b4f8f5b3e4d676 (diff)
downloadgcc-87677ac7fbe12cd180e4a3c0ab4c209e08df98e8.zip
gcc-87677ac7fbe12cd180e4a3c0ab4c209e08df98e8.tar.gz
gcc-87677ac7fbe12cd180e4a3c0ab4c209e08df98e8.tar.bz2
Remove Pascal-related entries in code and comments.
2018-09-25 Martin Liska <mliska@suse.cz> * config/powerpcspe/powerpcspe.c (rs6000_output_function_epilogue): Do not handle "GNU Pascal". * config/rs6000/rs6000.c (rs6000_output_function_epilogue): Likewise. * config/sparc/sparc.c (sparc_pass_by_reference): Remove Pascal from documentation. Likewise. * dbxout.c (dbxout_range_type): Likewise. * doc/cpp.texi: Likewise. * doc/extend.texi: Likewise. * doc/frontends.texi: Likewise. * doc/invoke.texi: Remove Pascal entry. * tree.def (CLEANUP_POINT_EXPR): Likewise. * doc/rtl.texi (MODE_FUNCTION): Remove not used entry. 2018-09-25 Martin Liska <mliska@suse.cz> * c-common.c (c_common_truthvalue_conversion): Remove Pascal from documentation. From-SVN: r264559
Diffstat (limited to 'gcc/c-family')
-rw-r--r--gcc/c-family/ChangeLog5
-rw-r--r--gcc/c-family/c-common.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog
index 4080bee..3b3b987 100644
--- a/gcc/c-family/ChangeLog
+++ b/gcc/c-family/ChangeLog
@@ -1,3 +1,8 @@
+2018-09-25 Martin Liska <mliska@suse.cz>
+
+ * c-common.c (c_common_truthvalue_conversion):
+ Remove Pascal from documentation.
+
2018-09-21 Eric Botcazou <ebotcazou@adacore.com>
* c-ada-spec.c: Include diagnostic.h.
diff --git a/gcc/c-family/c-common.c b/gcc/c-family/c-common.c
index 4bfb145..10a8bc2 100644
--- a/gcc/c-family/c-common.c
+++ b/gcc/c-family/c-common.c
@@ -3289,7 +3289,7 @@ c_common_truthvalue_conversion (location_t location, tree expr)
tree inner = TREE_OPERAND (expr, 0);
if (decl_with_nonnull_addr_p (inner))
{
- /* Common Ada/Pascal programmer's mistake. */
+ /* Common Ada programmer's mistake. */
warning_at (location,
OPT_Waddress,
"the address of %qD will always evaluate as %<true%>",