[Bug target/103370] [12 Regression] Assembler error building glibc for ColdFire soft-float

2022-01-02 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103370

Richard Biener  changed:

   What|Removed |Added

   Priority|P3  |P4

--- Comment #5 from Richard Biener  ---
The issue likely has gone latent.  m68k is not primary/secondary.

[Bug target/103370] [12 Regression] Assembler error building glibc for ColdFire soft-float

2021-12-07 Thread jsm28 at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103370

--- Comment #4 from Joseph S. Myers  ---
It seems this glibc build failure disappeared between commit
b880d1514c1e3dd75a6ea311a5cc956742bd713c and commit
8e836af61b7027c0819da62c12a8d18b7c46f3fc.  (Not verified that the GCC change
was what's relevant - my bot updated other components as well - but it looks
plausible.)

[Bug target/103370] [12 Regression] Assembler error building glibc for ColdFire soft-float

2021-11-23 Thread marxin at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103370

--- Comment #3 from Martin Liška  ---
Created attachment 51857
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=51857&action=edit
Reduced test-case

[Bug target/103370] [12 Regression] Assembler error building glibc for ColdFire soft-float

2021-11-22 Thread rguenth at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103370

Richard Biener  changed:

   What|Removed |Added

   Target Milestone|--- |12.0

[Bug target/103370] [12 Regression] Assembler error building glibc for ColdFire soft-float

2021-11-22 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103370

--- Comment #2 from Andrew Pinski  ---
case OPTION_PCREL:  /* --pcrel means never turn PC-relative
   branches into absolute jumps.  */
  flag_keep_pcrel = 1;
  break;


--pcrel is passed to the assembler for -fPIC/-fpic code.

[Bug target/103370] [12 Regression] Assembler error building glibc for ColdFire soft-float

2021-11-22 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103370

--- Comment #1 from Andrew Pinski  ---
  if (!HAVE_LONG_BRANCH (current_architecture))
{
  if (flag_keep_pcrel)
as_fatal (_("Tried to convert PC relative branch to absolute jump"));


#define HAVE_LONG_BRANCH(x) \
((x) & (m68020|m68030|m68040|m68060|cpu32|fido_a|mcfisa_b))