jor1k icon indicating copy to clipboard operation
jor1k copied to clipboard

gcc compile err

Open ohisama opened this issue 6 years ago • 1 comments
trafficstars

~ $ cat main.c
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char * argv[])
{
int i;
for (i = 1; i < argc; i++)
{
printf("%s%s", (i == 1 ? "" : " "), argv[i]);
}
putchar('\n');
exit(0);
}

~ $ gcc main.c
/tmp/cccDMhHm.s: Assembler messages:
/tmp/cccDMhHm.s:61: Error: operand out of range (1073741797 not between -3355443 2 and 33554431)
~ $

ohisama avatar May 06 '19 04:05 ohisama

Please try it again.

s-macke avatar May 06 '19 19:05 s-macke