Commit d65f135a by Ulrich Weigand Committed by Ulrich Weigand

s390.c (s390_output_constant_pool): Replace ASM_OUTPUT_INTERNAL_LABEL by…

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
parent ab17919f
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
......
......@@ -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));
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment