Commit 114bbac6 by Ramana Radhakrishnan

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
parent 56fe3eff
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>
......@@ -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 ();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment