From: Segher Boessenkool Date: Thu, 11 Jul 2019 18:42:20 +0000 (+0200) Subject: rs6000: Handle Modula-2 in the traceback table X-Git-Tag: releases/gcc-9.2.0~158 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=54f3719d6df972cf000272d49655df15a175e4b0;p=thirdparty%2Fgcc.git rs6000: Handle Modula-2 in the traceback table This patch recognises Modula-2 as language for the traceback table, fixing the problem shown in https://gcc.gnu.org/ml/gcc-patches/2019-07/msg00848.html . * config/rs6000/rs6000.c (rs6000_output_function_epilogue): Handle Modula-2. From-SVN: r273412 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 228223d1254f..12a316f2b01a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2019-07-11 Segher Boessenkool + + * config/rs6000/rs6000.c (rs6000_output_function_epilogue): Handle + Modula-2. + 2019-07-08 Richard Biener PR tree-optimization/91108 diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index 5950698c6a88..085b80fa6531 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -29158,6 +29158,8 @@ rs6000_output_function_epilogue (FILE *file) i = 1; else if (! strcmp (language_string, "GNU Ada")) i = 3; + else if (! strcmp (language_string, "GNU Modula-2")) + i = 8; else if (lang_GNU_CXX () || ! strcmp (language_string, "GNU Objective-C++")) i = 9;