blob: 9cf4e0b0362900f5b5db2b55ad5c783b0f55bfba [file] [log] [blame]
/* This testcase tests a problem that occurred due to the way call nodes are
* generated by llvmgcc.
*/
#include <stdio.h>
#include <stdlib.h>
int main() {
unsigned char *validate_array;
validate_array = (unsigned char *)malloc(64);
if (validate_array == 0) {
printf("FAILURE!\n");
exit(1);
}
printf("SUCCESS\n");
}