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
......@@ -2127,8 +2127,10 @@ DTORS_SECTION_FUNCTION
&& !TARGET_PORTABLE_RUNTIME) \
fputs ("P%", FILE); \
if (in_section == in_named \
&& ! strcmp (".gcc_except_table", in_named_name))\
fputs ("P%", FILE); \
&& ! strcmp (".gcc_except_table", in_named_name)\
&& TARGET_GAS \
&& ! TARGET_PORTABLE_RUNTIME) \
fputs ("E%", FILE); \
output_addr_const (FILE, (VALUE)); \
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