diff options
author | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2014-04-07 21:31:29 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2014-04-07 21:31:29 +0000 |
commit | 3f2f838e02a4df39cc6406f913d0cd0f92faea02 (patch) | |
tree | fa1d12f7524f908b9666ae44ab7ee403abc69e45 /gcc | |
parent | 631e3e1b75a52e1cd8c0da794b856781ca912856 (diff) | |
download | gcc-3f2f838e02a4df39cc6406f913d0cd0f92faea02.zip gcc-3f2f838e02a4df39cc6406f913d0cd0f92faea02.tar.gz gcc-3f2f838e02a4df39cc6406f913d0cd0f92faea02.tar.bz2 |
re PR target/60504 (many Ada testsuite regressions on ARM/Linux)
PR target/60504
* config/arm/arm.h (ASM_PREFERRED_EH_DATA_FORMAT): Expose from
ARM_TARGET2_DWARF_FORMAT.
From-SVN: r209201
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 12 | ||||
-rw-r--r-- | gcc/config/arm/arm.h | 2 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/gnat.dg/test_raise_from_pure.adb | 2 |
4 files changed, 14 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 12fc17f..b568f37 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2014-04-07 Douglas B Rupp <rupp@adacore.com> + + PR target/60504 + * config/arm/arm.h (ASM_PREFERRED_EH_DATA_FORMAT): Expose from + ARM_TARGET2_DWARF_FORMAT. + 2014-04-07 Charles Baylis <charles.baylis@linaro.org> PR target/60609 @@ -8,10 +14,8 @@ 2014-04-07 Richard Biener <rguenther@suse.de> PR tree-optimization/60766 - * tree-ssa-loop-ivopts.c (cand_value_at): Compute in an - unsigned type. - (may_eliminate_iv): Convert cand_value_at result to desired - type. + * tree-ssa-loop-ivopts.c (cand_value_at): Compute in an unsigned type. + (may_eliminate_iv): Convert cand_value_at result to desired type. 2014-04-07 Jason Merrill <jason@redhat.com> diff --git a/gcc/config/arm/arm.h b/gcc/config/arm/arm.h index a4bbd12..597e69c 100644 --- a/gcc/config/arm/arm.h +++ b/gcc/config/arm/arm.h @@ -937,13 +937,13 @@ extern int arm_arch_crc; #ifndef ARM_TARGET2_DWARF_FORMAT #define ARM_TARGET2_DWARF_FORMAT DW_EH_PE_pcrel +#endif /* ttype entries (the only interesting data references used) use TARGET2 relocations. */ #define ASM_PREFERRED_EH_DATA_FORMAT(code, data) \ (((code) == 0 && (data) == 1 && ARM_UNWIND_INFO) ? ARM_TARGET2_DWARF_FORMAT \ : DW_EH_PE_absptr) -#endif /* The native (Norcroft) Pascal compiler for the ARM passes the static chain as an invisible last argument (possible since varargs don't exist in diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index cd07b28..16f23c5 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2014-04-07 Eric Botcazou <ebotcazou@adacore.com> + + * gnat.dg/test_raise_from_pure.adb: UnXFAIL for ARM. + 2014-04-07 Charles Baylis <charles.baylis@linaro.org> PR target/60609 diff --git a/gcc/testsuite/gnat.dg/test_raise_from_pure.adb b/gcc/testsuite/gnat.dg/test_raise_from_pure.adb index 66db223..8f928c5 100644 --- a/gcc/testsuite/gnat.dg/test_raise_from_pure.adb +++ b/gcc/testsuite/gnat.dg/test_raise_from_pure.adb @@ -1,4 +1,4 @@ --- { dg-do run { xfail arm*-*-* } } +-- { dg-do run } -- { dg-options "-O2" } -- This is an optimization test and its failure is only a missed optimization. |