[Bug c/71746] Scope Variable Address (Stack) Mismatch

2016-07-03 Thread mfurkanuslu at openmailbox dot org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71746 Furkan USLU changed: What|Removed |Added Status|RESOLVED|CLOSED --- Comment #2 from Furkan USLU --

[Bug c/71746] New: Scope Variable Address (Stack) Mismatch

2016-07-03 Thread mfurkanuslu at openmailbox dot org
Assignee: unassigned at gcc dot gnu.org Reporter: mfurkanuslu at openmailbox dot org Target Milestone: --- int main() { int* ptr; { int svar = 13; ptr = &svar; } int mvar = 144; printf("%d\n", *ptr); output is 13 but if i add this