diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/pr31490.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/pr31490.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/pr31490.c b/gcc/testsuite/gcc.dg/pr31490.c new file mode 100644 index 000000000..966a1b4a5 --- /dev/null +++ b/gcc/testsuite/gcc.dg/pr31490.c @@ -0,0 +1,6 @@ +/* PR middle-end/31490 */ +/* { dg-do compile } */ +/* { dg-require-named-sections "" } */ +int cpu (void *attr) {} +const unsigned long x __attribute__((section("foo"))) = (unsigned long)&cpu; +const unsigned long g __attribute__((section("foo"))) = 0; |