re PR go/79037 (gccgo: Binaries crash with parforsetup: pos is not aligned on m68k)
[gcc.git] / libgo / runtime / runtime.h
index 5fd115589a7c13bfab003e4d59b3b6d11e326d3a..644fe9286541ca15b36347e001da49edef4fbfb2 100644 (file)
@@ -191,7 +191,7 @@ struct ParFor
                                        // otherwise parfor may return while other threads are still working
        ParForThread *thr;              // array of thread descriptors
        // stats
-       uint64 nsteal;
+       uint64 nsteal __attribute__((aligned(8))); // force alignment for m68k
        uint64 nstealcnt;
        uint64 nprocyield;
        uint64 nosyield;