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]

[Bug target/42841] [4.3/4.4/4.5 Regression] SH: Assembler complains pcrel too far.



------- Comment #7 from kkojima at gcc dot gnu dot org  2010-01-22 13:21 -------
(In reply to comment #6)
> Anyway, OK for trunk ? (just need to fix the date in the ChangeLog). regtesting
> done.

OK.  And the patch is pre-approved for branches too after one week or so.

BTW, I mean JUMP_P(x) && !JUMP_TABLE_DATA_P(x):

   a && !(a && (b || c))
== a &&(!a || !(b || c))
== (a && !a) || (a && !(b || c))
== 0 || (a && !(b || c))
== a && !b && !c


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42841


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