forked from OSchip/llvm-project
parent
806845daec
commit
6d78d69586
|
@ -61,7 +61,7 @@ int main(int argc, char** argv) {
|
||||||
Args[1] = strcat(strcpy((char*)malloc(strlen(argv[0])+4), argv[0]), ".bc");
|
Args[1] = strcat(strcpy((char*)malloc(strlen(argv[0])+4), argv[0]), ".bc");
|
||||||
|
|
||||||
/* The rest of the args are as before. */
|
/* The rest of the args are as before. */
|
||||||
memcpy(Args+2, argv+1, sizeof(char*)*argc);
|
memcpy((char **)Args+2, argv+1, sizeof(char*)*argc);
|
||||||
|
|
||||||
/* Run the JIT. */
|
/* Run the JIT. */
|
||||||
execvp(Interp, (char **)Args);
|
execvp(Interp, (char **)Args);
|
||||||
|
|
Loading…
Reference in New Issue