aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/analyzer/pr98599-a.c
blob: 2bbf37b0e6e29664f90f1279852ac0ed5d12ec39 (plain)
1
2
3
4
5
6
7
8
/* { dg-do link } */
/* { dg-require-effective-target lto } */
/* { dg-additional-options "-Os -flto" } */
/* { dg-additional-sources pr98599-b.c } */

int b(int x);
int a() { b(5); }
int main() { a(); }