Open mewmew opened 8 years ago
Seems to be related to an out of bounds error in the original C source of the sim05.c
test case.
Warning from Clang, when compiling sim05.c
:
testdata/noisy/simple/sim05.c:12:3: warning: array index 1 is past the end of the array (which contains 1 element) [-Warray-bounds]
cr[1]=0;
^ ~
testdata/noisy/simple/sim05.c:8:3: note: array 'cr' declared here
char cr[1];
^