Fortran: fix dependency checks for inquiry refs [PR115039]
[official-gcc.git] / gcc / testsuite / gcc.target / mips / pr102024-3.c
blob477f07055a111a4403ef59c26d108f131b529fee
1 // PR target/102024
2 // { dg-do compile }
3 // { dg-options "-mabi=64 -mhard-float" }
4 // { dg-final { scan-assembler "\\\$f12" } }
6 struct foo
8 struct {} empty;
9 double a;
12 extern void func(struct foo);
14 void
15 pass_foo(void)
17 struct foo test;
18 test.a = 114;
19 func(test); // { dg-message "the ABI for passing a value containing zero-width fields before an adjacent 64-bit floating-point field was changed in GCC 12.1" }