analyzer: enable taint state machine by default [PR103533]
[official-gcc.git] / gcc / testsuite / c-c++-common / asan / pr89124.c
blobc9c870b76c6cdd0764a7d69ccf93d0d0f27881fb
1 /* PR sanitizer/89124 */
2 /* { dg-do compile } */
4 static int inline __attribute__ ((always_inline))
5 foo (int x)
7 return x + 1;
10 __attribute__ ((no_sanitize_address)) int
11 bar (int x)
13 return foo (x);