diff options
author | Georg-Johann Lay <avr@gjlay.de> | 2011-07-14 07:49:14 +0000 |
---|---|---|
committer | Georg-Johann Lay <gjl@gcc.gnu.org> | 2011-07-14 07:49:14 +0000 |
commit | eb1dcdffa760f1bac0a9e95697be7f95c9485c60 (patch) | |
tree | 1c21566fb30d00cb79d178deb684bbba64e6424f /gcc/testsuite/gcc.dg/array-quals-1.c | |
parent | d31fb329c86b90b3f9f219f2ce186bf2f56c6c5a (diff) | |
download | gcc-eb1dcdffa760f1bac0a9e95697be7f95c9485c60.zip gcc-eb1dcdffa760f1bac0a9e95697be7f95c9485c60.tar.gz gcc-eb1dcdffa760f1bac0a9e95697be7f95c9485c60.tar.bz2 |
re PR target/43746 (-fmerge-constants and -fmerge-all-constants don't work at AVR target)
gcc/
PR target/43746
* config/avr/elf.h (TARGET_ASM_SELECT_SECTION): Remove,
i.e. use default_elf_select_section.
(TARGET_HAVE_SWITCHABLE_BSS_SECTIONS): Remove.
(READONLY_DATA_SECTION_ASM_OP): Remove.
(TARGET_ASM_NAMED_SECTION): Move from here...
* config/avr/avr.c: ...to here.
(avr_asm_init_sections): Set unnamed callback of
readonly_data_section.
(avr_asm_named_section): Make static.
testsuite/
PR target/43746
* gcc.dg/array-quals-1.c: Don't xfail on AVR.
From-SVN: r176262
Diffstat (limited to 'gcc/testsuite/gcc.dg/array-quals-1.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/array-quals-1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/array-quals-1.c b/gcc/testsuite/gcc.dg/array-quals-1.c index f01db68..17df983 100644 --- a/gcc/testsuite/gcc.dg/array-quals-1.c +++ b/gcc/testsuite/gcc.dg/array-quals-1.c @@ -4,7 +4,7 @@ /* Origin: Joseph Myers <jsm@polyomino.org.uk> */ /* { dg-do compile } */ /* The MMIX port always switches to the .data section at the end of a file. */ -/* { dg-final { scan-assembler-not "\\.data(?!\\.rel\\.ro)" { xfail powerpc*-*-aix* mmix-*-* x86_64-*-mingw* picochip--*-* avr-*-*} } } */ +/* { dg-final { scan-assembler-not "\\.data(?!\\.rel\\.ro)" { xfail powerpc*-*-aix* mmix-*-* x86_64-*-mingw* picochip--*-* } } } */ static const int a[2] = { 1, 2 }; const int a1[2] = { 1, 2 }; typedef const int ci; |