Mercurial > hg > CbC > GCC_original
view gcc/testsuite/gcc.c-torture/execute/pr94134.c @ 19:2b5abeee2509 default tip
update gcc11
author | anatofuz |
---|---|
date | Mon, 25 May 2020 07:50:57 +0900 |
parents | |
children |
line wrap: on
line source
/* PR target/94134 */ static volatile int a = 0; static volatile int b = 1; int main () { a++; b++; if (a != 1 || b != 2) __builtin_abort (); return 0; }