* gcc.c-torture/pr88140.c: Move to ...
* gcc.c-torture/compile/pr88140.c: ... here.
From-SVN: r273999
* gfortran.dg/ieee/ieee_9.f90: XFAIL on arm*-*-gnueabi[hf].
2018-12-24 Jan Hubicka <hubicka@ucw.cz>
-
+
PR lto/88140
- * gcc.c-torture/pr88140.c: New testcase.
+ * gcc.c-torture/compile/pr88140.c: New testcase.
2018-12-24 Iain Sandoe <iain@sandoe.co.uk>
--- /dev/null
+typedef struct {
+} a;
+
+typedef struct {
+ a *b[0];
+} c;
+
+void d() { ((c *)0)->b[0] = 0; }
+++ /dev/null
-typedef struct {
-} a;
-
-typedef struct {
- a *b[0];
-} c;
-
-void d() { ((c *)0)->b[0] = 0; }