This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug target/42841] [4.3/4.4/4.5 Regression] SH: Assembler complains pcrel too far.
- From: "kkojima at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 22 Jan 2010 13:21:59 -0000
- Subject: [Bug target/42841] [4.3/4.4/4.5 Regression] SH: Assembler complains pcrel too far.
- References: <bug-42841-18412@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- 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