PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / nofixed-point-2.c
blob166a6bcb9e6a59df118c10c6aee67f741e41ff25
1 /* PR inline-asm/39059 */
2 /* { dg-do compile { target {! fixed_point} } } */
3 /* { dg-options "-std=gnu99" } */
5 void
6 f1 (void)
8 asm ("" : : "r" (0r)); /* { dg-error "not supported" "reject fixed-point" } */
11 __typeof (0r) /* { dg-error "not supported" "reject fixed-point" } */
12 b2 (void) /* { dg-bogus "defaults to" } */
14 return 0r; /* { dg-error "not supported" "reject fixed-point" } */
17 _Accum /* { dg-error "not supported" "reject fixed-point" } */
18 f3 (void)
20 return 0k; /* { dg-error "not supported" "reject fixed-point" } */
23 _Sat
24 /* { dg-error "not supported" "reject fixed-point" { target *-*-* } .-1 } */
25 /* { dg-error "is used without" "" { target *-*-* } .-2 } */
26 f4 (void)
28 return 0k; /* { dg-error "not supported" "reject fixed-point" } */