Commit a24d629d by Jeff Law

pa.h (ASM_OUTPUT_INT): Use an 'E%' prefix for items in the exception table if...

        * pa/pa.h (ASM_OUTPUT_INT): Use an 'E%' prefix for items in
        the exception table if TARGET_GAS && ! TARGET_PORTABLE_RUNTIME.

From-SVN: r12577
parent 73061e0f
...@@ -2125,10 +2125,12 @@ DTORS_SECTION_FUNCTION ...@@ -2125,10 +2125,12 @@ DTORS_SECTION_FUNCTION
{ fputs ("\t.word ", FILE); \ { fputs ("\t.word ", FILE); \
if (function_label_operand (VALUE, VOIDmode) \ if (function_label_operand (VALUE, VOIDmode) \
&& !TARGET_PORTABLE_RUNTIME) \ && !TARGET_PORTABLE_RUNTIME) \
fputs ("P%", FILE); \ fputs ("P%", FILE); \
if (in_section == in_named \ if (in_section == in_named \
&& ! strcmp (".gcc_except_table", in_named_name))\ && ! strcmp (".gcc_except_table", in_named_name)\
fputs ("P%", FILE); \ && TARGET_GAS \
&& ! TARGET_PORTABLE_RUNTIME) \
fputs ("E%", FILE); \
output_addr_const (FILE, (VALUE)); \ output_addr_const (FILE, (VALUE)); \
fputs ("\n", FILE);} fputs ("\n", FILE);}
......
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