aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Weigand <uweigand@de.ibm.com>2002-12-17 12:38:58 +0000
committerUlrich Weigand <uweigand@gcc.gnu.org>2002-12-17 12:38:58 +0000
commitd65f135a99c54aa00ce988f093c4319aed5d7ad9 (patch)
tree14ceb5953008068a9abf82e97d9bf6e6c1688ae0
parentab17919f95c31f8fc2bde2be26ea01230c041635 (diff)
downloadgcc-d65f135a99c54aa00ce988f093c4319aed5d7ad9.zip
gcc-d65f135a99c54aa00ce988f093c4319aed5d7ad9.tar.gz
gcc-d65f135a99c54aa00ce988f093c4319aed5d7ad9.tar.bz2
s390.c (s390_output_constant_pool): Replace ASM_OUTPUT_INTERNAL_LABEL by (*targetm.asm_out.internal_label).
* config/s390/s390.c (s390_output_constant_pool): Replace ASM_OUTPUT_INTERNAL_LABEL by (*targetm.asm_out.internal_label). From-SVN: r60208
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/s390/s390.c11
2 files changed, 11 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b7d635d..defce51 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2002-12-17 Ulrich Weigand <uweigand@de.ibm.com>
+
+ * config/s390/s390.c (s390_output_constant_pool): Replace
+ ASM_OUTPUT_INTERNAL_LABEL by (*targetm.asm_out.internal_label).
+
Tue Dec 17 09:47:57 CET 2002 Jan Hubicka <jh@suse.cz>
* convert.c (convert_to_real): Disable function transformation for
diff --git a/gcc/config/s390/s390.c b/gcc/config/s390/s390.c
index 5e4741e..295fdef 100644
--- a/gcc/config/s390/s390.c
+++ b/gcc/config/s390/s390.c
@@ -4067,13 +4067,13 @@ s390_output_constant_pool (start_label, end_label)
{
readonly_data_section ();
ASM_OUTPUT_ALIGN (asm_out_file, 3);
- ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "L",
- CODE_LABEL_NUMBER (start_label));
+ (*targetm.asm_out.internal_label) (asm_out_file, "L",
+ CODE_LABEL_NUMBER (start_label));
}
else
{
- ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "L",
- CODE_LABEL_NUMBER (start_label));
+ (*targetm.asm_out.internal_label) (asm_out_file, "L",
+ CODE_LABEL_NUMBER (start_label));
ASM_OUTPUT_ALIGN (asm_out_file, 2);
}
@@ -4085,7 +4085,8 @@ s390_output_constant_pool (start_label, end_label)
else
{
ASM_OUTPUT_ALIGN (asm_out_file, 1);
- ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "L", CODE_LABEL_NUMBER (end_label));
+ (*targetm.asm_out.internal_label) (asm_out_file, "L",
+ CODE_LABEL_NUMBER (end_label));
}
}