OSDN Git Service

* alpha.c (TARGET_ASM_GLOBALIZE_LABEL): Define for unicosmk.
[pf3gnuchains/gcc-fork.git] / gcc / config / ns32k / ns32k.c
index 5c5252c..ee419a0 100644 (file)
@@ -70,6 +70,9 @@ const struct attribute_spec ns32k_attribute_table[];
 static void ns32k_output_function_prologue PARAMS ((FILE *, HOST_WIDE_INT));
 static void ns32k_output_function_epilogue PARAMS ((FILE *, HOST_WIDE_INT));
 static void ns32k_encode_section_info PARAMS ((tree, int));
+#ifdef COLLECT
+static void ns32k_globalize_label PARAMS ((FILE *, const char *));
+#endif
 \f
 /* Initialize the GCC target structure.  */
 #undef TARGET_ATTRIBUTE_TABLE
@@ -1573,3 +1576,13 @@ ns32k_encode_section_info (decl, first)
           || ! TREE_PUBLIC (decl));
     }
 }
+
+#ifdef COLLECT
+static void
+ns32k_globalize_label (stream, name)
+     FILE *stream;
+     const char *name;
+{
+  fprintf (stream, "\t.globl\t%s\n", name);
+}
+#endif