* 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
{ fputs ("\t.word ", FILE); \
if (function_label_operand (VALUE, VOIDmode) \
&& !TARGET_PORTABLE_RUNTIME) \
- fputs ("P%", FILE); \
- if (in_section == in_named \
- && ! strcmp (".gcc_except_table", in_named_name))\
- fputs ("P%", FILE); \
+ fputs ("P%", FILE); \
+ if (in_section == in_named \
+ && ! strcmp (".gcc_except_table", in_named_name)\
+ && TARGET_GAS \
+ && ! TARGET_PORTABLE_RUNTIME) \
+ fputs ("E%", FILE); \
output_addr_const (FILE, (VALUE)); \
fputs ("\n", FILE);}