Module Name: src
Committed By: christos
Date: Fri Sep 16 20:31:00 UTC 2016
Modified Files:
src/external/gpl3/gcc/dist/gcc/config/m68k: m68k.c
Log Message:
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.
To generate a diff of this commit:
cvs rdiff -u -r1.1.1.3 -r1.2 \
src/external/gpl3/gcc/dist/gcc/config/m68k/m68k.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/gpl3/gcc/dist/gcc/config/m68k/m68k.c
diff -u src/external/gpl3/gcc/dist/gcc/config/m68k/m68k.c:1.1.1.3 src/external/gpl3/gcc/dist/gcc/config/m68k/m68k.c:1.2
--- src/external/gpl3/gcc/dist/gcc/config/m68k/m68k.c:1.1.1.3 Sun Jan 24 01:06:28 2016
+++ src/external/gpl3/gcc/dist/gcc/config/m68k/m68k.c Fri Sep 16 16:31:00 2016
@@ -684,6 +684,8 @@ m68k_option_override (void)
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. */