On 05/01/2022 11:08, Tom de Vries wrote: > The alloc-7.c execution test failure is a regression, AFAICT.  It fails > here: > ... > 38        if ((((uintptr_t) p) % __alignof (int)) != 0 || p[0] || p[1] > || p[2]) > 39          abort (); > ... > because: > ... > (gdb) p p[0] > $2 = 772014104 > (gdb) p p[1] > $3 = 0 > (gdb) p p[2] > $4 = 9 > ... > > In other words, the pointer returned by omp_calloc does not point to > zeroed out memory. The version that was applied to OG11 had this bug fixed, but I didn't get around to posting the update because Christmas got in the way and it's gone out of my mind, sorry. The attached patch has the fix and also removes the hunk related to the PTX update. Andrew