comparison gcc/testsuite/gcc.dg/pr79342.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -gsplit-dwarf -g3" } */
3 /* { dg-additional-options "-march=skylake -mrtm -mabm" { target x86_64-*-* i?86-*-* } } */
4
5 int a;
6 void b(void);
7
8 void e(int *);
9 int f(void);
10
11 void
12 c(void)
13 {
14 int d;
15 e(&d);
16 if (f())
17 b();
18 }