aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRamana Radhakrishnan <ramana@gcc.gnu.org>2009-10-05 09:25:34 +0000
committerRamana Radhakrishnan <ramana@gcc.gnu.org>2009-10-05 09:25:34 +0000
commit114bbac6ff31e56fe1df19f2aa88947ae1b4ac62 (patch)
tree3060b98ef08342af74269f90bb9a07642fe50b9e /gcc
parent56fe3eff33f4376fb5104d8eaf109618cb07fc9e (diff)
downloadgcc-114bbac6ff31e56fe1df19f2aa88947ae1b4ac62.zip
gcc-114bbac6ff31e56fe1df19f2aa88947ae1b4ac62.tar.gz
gcc-114bbac6ff31e56fe1df19f2aa88947ae1b4ac62.tar.bz2
arm.c (arm_override_options): Really initialize flag_dwarf2_cfi_asm to 0.
2009-10-05 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com> * config/arm/arm.c (arm_override_options): Really initialize flag_dwarf2_cfi_asm to 0. From-SVN: r152446
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/config/arm/arm.c14
2 files changed, 13 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index c9e635d..4c0221d 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,7 +1,12 @@
+2009-10-05 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
+
+ * config/arm/arm.c (arm_override_options): Really initialize
+ flag_dwarf2_cfi_asm to 0.
+
2009-10-05 Doug Kwan <dougkwan@google.com>
PR rtl-optimization/41574
- Index: combine.c (distribute_and_simplify_rtx): Quit if RTX mode is
+ * combine.c (distribute_and_simplify_rtx): Quit if RTX mode is
floating point and we are not doing unsafe math optimizations.
2009-10-03 Simon Baldwin <simonb@google.com>
diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c
index cd5a0ed..fb4e59f 100644
--- a/gcc/config/arm/arm.c
+++ b/gcc/config/arm/arm.c
@@ -1298,13 +1298,6 @@ arm_override_options (void)
enum processor_type target_arch_cpu = arm_none;
enum processor_type selected_cpu = arm_none;
- /* Ideally we would want to use CFI directives to generate
- debug info. However this also creates the .eh_frame
- section, so disable them until GAS can handle
- this properly. See PR40521. */
- if (TARGET_AAPCS_BASED)
- flag_dwarf2_cfi_asm = 0;
-
/* Set up the flags based on the cpu/architecture selected by the user. */
for (i = ARRAY_SIZE (arm_select); i--;)
{
@@ -1871,6 +1864,13 @@ arm_override_options (void)
max_insns_skipped = 3;
}
+ /* Ideally we would want to use CFI directives to generate
+ debug info. However this also creates the .eh_frame
+ section, so disable them until GAS can handle
+ this properly. See PR40521. */
+ if (TARGET_AAPCS_BASED)
+ flag_dwarf2_cfi_asm = 0;
+
/* Register global variables with the garbage collector. */
arm_add_gc_roots ();
}