This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH,picochip] Remove cfi_asm flag disable


Hi all,
This patch reverts part of my previous commit. ASM support for CFI directives should be detected at configure time and not disabled explicitly. Thanks to Andrew Pinski for the pointers. Commited to trunk.


Cheers
Hari

ChangeLog:

        * config/picochip/picochip.c (picochip_override_options): Revert
        CFI asm flag disable commited previously.

Patch:

Index: gcc/config/picochip/picochip.c
===================================================================
--- gcc/config/picochip/picochip.c      (revision 143427)
+++ gcc/config/picochip/picochip.c      (working copy)
@@ -324,9 +324,6 @@ picochip_override_options (void)
      This isnt the default at O2 as yet. */
   flag_section_anchors = 1;

-  /* CFI asm labels are not supported by the picochip assembler yet */
-  flag_dwarf2_cfi_asm = 0;
-
   /* Turn off the second scheduling pass, and move it to
      picochip_reorg, to avoid having the second jump optimisation
      trash the instruction modes (e.g., instructions are changed to


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]