Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/gpl3/gcc/dist/gcc/config/m68k turn off split wide t...



details:   https://anonhg.NetBSD.org/src/rev/90ba0a0c5350
branches:  trunk
changeset: 817940:90ba0a0c5350
user:      christos <christos%NetBSD.org@localhost>
date:      Fri Sep 16 20:31:00 2016 +0000

description:
turn off split wide types to avoid gcc bug. Arguably this should be fixed
in m68k.md, but I will leave this to someone more qualified.

diffstat:

 external/gpl3/gcc/dist/gcc/config/m68k/m68k.c |  2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diffs (12 lines):

diff -r 9204580e98f2 -r 90ba0a0c5350 external/gpl3/gcc/dist/gcc/config/m68k/m68k.c
--- a/external/gpl3/gcc/dist/gcc/config/m68k/m68k.c     Fri Sep 16 20:30:14 2016 +0000
+++ b/external/gpl3/gcc/dist/gcc/config/m68k/m68k.c     Fri Sep 16 20:31:00 2016 +0000
@@ -684,6 +684,8 @@
       else
        m68k_sched_mac = MAC_NO;
     }
+    // XXX: Avoid https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71695
+    flag_split_wide_types = 0;
 }
 
 /* Implement TARGET_OVERRIDE_OPTIONS_AFTER_CHANGE.  */



Home | Main Index | Thread Index | Old Index