This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Mainline bootstrap failure on Solaris 8/Intel


On Thu, May 23, 2002 at 09:35:23PM +0200, Rainer Orth wrote:
> 	addl	$_GLOBAL_OFFSET_TABLE_+[.-$.L17], %ebx
> 
> The $ prefixes of the local labels are the culprit; removing them allows
> the file to assemble.  crtstuff.[is] are included below for reference, but
> i386.c (output_set_got) seems to be the culprit: compiling with -march=i686
> (which sets TARGET_DEEP_BRANCH_PREDICTION) removes the failure:
> 
>   if (!flag_pic || TARGET_DEEP_BRANCH_PREDICTION)
>     output_asm_insn ("add{l}\t{%1, %0|%0, %1}", xops);
>   else
>     output_asm_insn ("add{l}\t{%1+[.-%X2], %0|%0, %a1+(.-%X2)}", xops);

Arg.  Should be %a2 not %X2 now.  I'll fix in a moment.


r~


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]