arm64 front end: add spec rules for {EQ,NE} after {LOGIC32,LOGIC64}.
[valgrind.git] / memcheck / tests / realloc1.c
blob91878b332486909a0194af59fcd62fe81f1b1584
2 /* Anyone know what this is supposed to test? I don't
3 (JRS 2003-07-07) -- which ain't good considering I
4 probably created it :)
5 */
7 #include <stdio.h>
8 #include <stdlib.h>
10 int main ( void )
12 int i;
13 char* p = malloc(1);
14 for (i = 2; i < 50; i++) {
15 p = realloc(p, i);
16 p[i-1] = 'z';
18 return 0;