diff options
Diffstat (limited to 'gcc/testsuite/gdc.dg/pr90136c.d')
-rw-r--r-- | gcc/testsuite/gdc.dg/pr90136c.d | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/testsuite/gdc.dg/pr90136c.d b/gcc/testsuite/gdc.dg/pr90136c.d index cf1c5de..534a734 100644 --- a/gcc/testsuite/gdc.dg/pr90136c.d +++ b/gcc/testsuite/gdc.dg/pr90136c.d @@ -2,8 +2,8 @@ // { dg-do compile } // { dg-options "-Wattributes" } -import gcc.attribute; +import gcc.attributes; -@attribute("forceinline") int sum_array(int[] input); +@attribute("always_inline") int sum_array(int[] input); @attribute("noinline") int sum_array(int[] input); -// { dg-warning "ignoring attribute .noinline. because it conflicts with attribute .forceinline." "" { target *-*-* } .-1 } +// { dg-warning "ignoring attribute .noinline. because it conflicts with attribute .always_inline." "" { target *-*-* } .-1 } |