]> gcc.gnu.org Git - gcc.git/commitdiff
final.c (final_scan_insn): Replace TARGET_UNWIND_INFO macro check by unwind_emit...
authorKai Tietz <kai.tietz@onevision.com>
Thu, 8 Jul 2010 18:07:52 +0000 (18:07 +0000)
committerKai Tietz <ktietz@gcc.gnu.org>
Thu, 8 Jul 2010 18:07:52 +0000 (20:07 +0200)
2010-07-08  Kai Tietz  <kai.tietz@onevision.com>

* final.c (final_scan_insn): Replace
TARGET_UNWIND_INFO macro check by unwind_emit
hook NULL check.
* targhooks.c (default_unwind_emit): Removed.
* targhooks.h (default_unwind_emit): Likewise.
* target.def (unwind_emit): Set default value to NULL.

From-SVN: r161972

gcc/ChangeLog
gcc/final.c
gcc/target.def
gcc/targhooks.c
gcc/targhooks.h

index 531729ce92243be24a24213df1c8eeb0bb81f6ab..b0b53615965a972c9186df70c128c8ef70b870c7 100644 (file)
@@ -1,5 +1,12 @@
 2010-07-08  Kai Tietz  <kai.tietz@onevision.com>
 
+       * final.c (final_scan_insn): Replace
+       TARGET_UNWIND_INFO macro check by unwind_emit
+       hook NULL check.
+       * targhooks.c (default_unwind_emit): Removed.
+       * targhooks.h (default_unwind_emit): Likewise.
+       * target.def (unwind_emit): Set default value to NULL.
+
        * config/i386/i386-protos.h (ix86_asm_output_function_label):
        New prototype.
        * config/i386/i386.c (ix86_function_ms_hook_prologue): Check
index 2bb897dc10b6c909a0724490cdb3c86d171efe86..fd597ac713d57c96f89c06ab9658944543f312ff 100644 (file)
@@ -1850,9 +1850,8 @@ final_scan_insn (rtx insn, FILE *file, int optimize ATTRIBUTE_UNUSED,
          break;
 
        case NOTE_INSN_BASIC_BLOCK:
-#ifdef TARGET_UNWIND_INFO
-         targetm.asm_out.unwind_emit (asm_out_file, insn);
-#endif
+         if (targetm.asm_out.unwind_emit)
+           targetm.asm_out.unwind_emit (asm_out_file, insn);
 
          if (flag_debug_asm)
            fprintf (asm_out_file, "\t%s basic block %d\n",
@@ -2659,12 +2658,11 @@ final_scan_insn (rtx insn, FILE *file, int optimize ATTRIBUTE_UNUSED,
            return new_rtx;
          }
 
-#ifdef TARGET_UNWIND_INFO
        /* ??? This will put the directives in the wrong place if
           get_insn_template outputs assembly directly.  However calling it
           before get_insn_template breaks if the insns is split.  */
-       targetm.asm_out.unwind_emit (asm_out_file, insn);
-#endif
+       if (targetm.asm_out.unwind_emit)
+         targetm.asm_out.unwind_emit (asm_out_file, insn);
 
        if (CALL_P (insn))
          {
index 3eb52a6fe54647e2cf63ae08b21c31a0c0ed86af..583e78b48b6182c83c6a24c02bf8f96a5a52d4e8 100644 (file)
@@ -150,7 +150,7 @@ DEFHOOK
 (unwind_emit,
  "",
  void, (FILE *stream, rtx insn),
default_unwind_emit)
NULL)
 
 /* Output an internal label.  */
 DEFHOOK
index f501cb9b5c24780552aba601aae099e01c127b4f..22077f8c437e7a37bfdb9ae68b0f2da7250a9eec 100644 (file)
@@ -316,16 +316,6 @@ hook_callee_copies_named (CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
   return named;
 }
 
-/* Emit any directives required to unwind this instruction.  */
-
-void
-default_unwind_emit (FILE * stream ATTRIBUTE_UNUSED,
-                    rtx insn ATTRIBUTE_UNUSED)
-{
-  /* Should never happen.  */
-  gcc_unreachable ();
-}
-
 /* Emit to STREAM the assembler syntax for insn operand X.  */
 
 void
index eb4b547aad0c9114f40cbbfcc80a4db1de5661ee..23393b4625542313b30bd9d1ffff232f690f4059 100644 (file)
@@ -62,7 +62,6 @@ extern bool hook_pass_by_reference_must_pass_in_stack
 extern bool hook_callee_copies_named
   (CUMULATIVE_ARGS *ca, enum machine_mode, const_tree, bool);
 
-extern void default_unwind_emit (FILE *, rtx);
 extern void default_print_operand (FILE *, rtx, int);
 extern void default_print_operand_address (FILE *, rtx);
 extern bool default_print_operand_punct_valid_p (unsigned char);
This page took 0.097887 seconds and 5 git commands to generate.