Version 5.x of GCC (GNU Compiler Collection).
Questions tagged [gcc5]
76 questions
-3
votes
1 answer
Difference between gcc5 and gcc8 with respect to return values of a function
I have two tools: gcc5 and gcc8.
Following is the snippet code
bool foo() {
int var;
var = 1;
printf("var=%d\n", var);
}
int calling_foo() {
foo();
}
If I compile and run w/ gcc5, foo() call returns.
But, if I compile and run w/ gcc8,…

Suresh
- 27
- 1
- 8