https://bugs.freedesktop.org/show_bug.cgi?id=101952

--- Comment #12 from Janpieter Sollie <[email protected]> ---
the bug seems to be located within this function:
char os_memcmp(private const void* dest, constant const void* src, const uchar
amount) {
    char j;
    const int* destination = (const int*) dest;
    constant int* source = (constant int*) src;
   for(j = (amount >> 2) - 1; j >= 0; j--) if(destination[j] != source[j])
return 0;
    return amount;
}

if you comment out the for loop, the program behaves as expected, if you don't,
it returns trash

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.
_______________________________________________
mesa-dev mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to