Blame SOURCES/gcc49-pr38757.patch

72e591
2009-03-18  Jakub Jelinek  <jakub@redhat.com>
72e591
72e591
	PR debug/38757
72e591
	* langhooks.h (struct lang_hooks): Add source_language langhook.
72e591
	* langhooks-def.h (LANG_HOOKS_SOURCE_LANGUAGE): Define to NULL.
72e591
	(LANG_HOOKS_INITIALIZER): Add LANG_HOOKS_SOURCE_LANGUAGE.
72e591
	* dwarf2out.c (add_prototyped_attribute): Add DW_AT_prototype
72e591
	also for DW_LANG_{C,C99,ObjC}.
72e591
	(gen_compile_unit_die): Use lang_hooks.source_language () to
72e591
	determine if DW_LANG_C99 or DW_LANG_C89 should be returned.
72e591
c/
72e591
	* c-lang.c (c_source_language): New function.
72e591
	(LANG_HOOKS_SOURCE_LANGUAGE): Define.
72e591
72e591
--- gcc/langhooks.h.jj	2011-01-03 12:53:05.125745450 +0100
72e591
+++ gcc/langhooks.h	2011-01-04 17:59:43.166744926 +0100
72e591
@@ -467,6 +467,10 @@ struct lang_hooks
72e591
      gimplification.  */
72e591
   bool deep_unsharing;
72e591
 
72e591
+  /* Return year of the source language standard version if the FE supports
72e591
+     multiple versions of the standard.  */
72e591
+  int (*source_language) (void);
72e591
+
72e591
   /* Whenever you add entries here, make sure you adjust langhooks-def.h
72e591
      and langhooks.c accordingly.  */
72e591
 };
72e591
--- gcc/langhooks-def.h.jj	2011-01-03 12:53:05.000000000 +0100
72e591
+++ gcc/langhooks-def.h	2011-01-04 18:00:44.858851030 +0100
72e591
@@ -118,6 +118,7 @@ extern void lhd_omp_firstprivatize_type_
72e591
 #define LANG_HOOKS_BLOCK_MAY_FALLTHRU	hook_bool_const_tree_true
72e591
 #define LANG_HOOKS_EH_USE_CXA_END_CLEANUP	false
72e591
 #define LANG_HOOKS_DEEP_UNSHARING	false
72e591
+#define LANG_HOOKS_SOURCE_LANGUAGE	NULL
72e591
 
72e591
 /* Attribute hooks.  */
72e591
 #define LANG_HOOKS_ATTRIBUTE_TABLE		NULL
72e591
@@ -303,7 +304,8 @@ extern void lhd_end_section (void);
72e591
   LANG_HOOKS_EH_PROTECT_CLEANUP_ACTIONS, \
72e591
   LANG_HOOKS_BLOCK_MAY_FALLTHRU, \
72e591
   LANG_HOOKS_EH_USE_CXA_END_CLEANUP, \
72e591
-  LANG_HOOKS_DEEP_UNSHARING \
72e591
+  LANG_HOOKS_DEEP_UNSHARING, \
72e591
+  LANG_HOOKS_SOURCE_LANGUAGE \
72e591
 }
72e591
 
72e591
 #endif /* GCC_LANG_HOOKS_DEF_H */
72e591
--- gcc/c/c-lang.c.jj	2011-01-03 12:53:05.376056936 +0100
72e591
+++ gcc/c/c-lang.c	2011-01-04 17:59:43.167743798 +0100
72e591
@@ -36,6 +36,12 @@ along with GCC; see the file COPYING3.
72e591
 
72e591
 enum c_language_kind c_language = clk_c;
72e591
 
72e591
+static int
72e591
+c_source_language (void)
72e591
+{
72e591
+  return flag_isoc99 ? 1999 : 1989;
72e591
+}
72e591
+
72e591
 /* Lang hooks common to C and ObjC are declared in c-objc-common.h;
72e591
    consequently, there should be very few hooks below.  */
72e591
 
72e591
@@ -45,6 +51,8 @@ enum c_language_kind c_language = clk_c;
72e591
 #define LANG_HOOKS_INIT c_objc_common_init
72e591
 #undef LANG_HOOKS_INIT_TS
72e591
 #define LANG_HOOKS_INIT_TS c_common_init_ts
72e591
+#undef LANG_HOOKS_SOURCE_LANGUAGE
72e591
+#define LANG_HOOKS_SOURCE_LANGUAGE c_source_language
72e591
 
72e591
 /* Each front end provides its own lang hook initializer.  */
72e591
 struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER;
72e591
--- gcc/dwarf2out.c.jj	2011-01-03 12:53:05.102056475 +0100
72e591
+++ gcc/dwarf2out.c	2011-01-04 18:03:14.534151763 +0100
72e591
@@ -16109,9 +16109,18 @@ add_bit_size_attribute (dw_die_ref die,
72e591
 static inline void
72e591
 add_prototyped_attribute (dw_die_ref die, tree func_type)
72e591
 {
72e591
-  if (get_AT_unsigned (comp_unit_die (), DW_AT_language) == DW_LANG_C89
72e591
-      && prototype_p (func_type))
72e591
-    add_AT_flag (die, DW_AT_prototyped, 1);
72e591
+  switch (get_AT_unsigned (comp_unit_die (), DW_AT_language))
72e591
+    {
72e591
+    case DW_LANG_C:
72e591
+    case DW_LANG_C89:
72e591
+    case DW_LANG_C99:
72e591
+    case DW_LANG_ObjC:
72e591
+      if (prototype_p (func_type))
72e591
+	add_AT_flag (die, DW_AT_prototyped, 1);
72e591
+      break;
72e591
+    default:
72e591
+      break;
72e591
+    }
72e591
 }
72e591
 
72e591
 /* Add an 'abstract_origin' attribute below a given DIE.  The DIE is found
72e591
@@ -18915,6 +18924,10 @@ gen_compile_unit_die (const char *filena
72e591
 	  if (strcmp (language_string, "GNU Go") == 0)
72e591
 	    language = DW_LANG_Go;
72e591
 	}
72e591
+      else if (strcmp (language_string, "GNU C") == 0
72e591
+	       && lang_hooks.source_language
72e591
+	       && lang_hooks.source_language () >= 1999)
72e591
+	language = DW_LANG_C99;
72e591
     }
72e591
   /* Use a degraded Fortran setting in strict DWARF2 so is_fortran works.  */
72e591
   else if (strcmp (language_string, "GNU Fortran") == 0)