ia64.h (OVERRIDE_OPTIONS): Remove macros.
authorAnatoly Sokolov <aesok@post.ru>
Thu, 8 Jul 2010 20:43:22 +0000 (00:43 +0400)
committerAnatoly Sokolov <aesok@gcc.gnu.org>
Thu, 8 Jul 2010 20:43:22 +0000 (00:43 +0400)
* config/ia64/ia64.h (OVERRIDE_OPTIONS): Remove macros.
* config/ia64/ia64-protos.h (ia64_override_options): Remove.
* config/ia64/ia64.c (TARGET_OPTION_OVERRIDE): Define.
(ia64_override_options): Rename to...
(ia64_option_override): ... this one. Make static.

From-SVN: r161975

gcc/ChangeLog
gcc/config/ia64/ia64-protos.h
gcc/config/ia64/ia64.c
gcc/config/ia64/ia64.h

index c9c5fc90b3da3475d8865365df29df1f9ab39431..f1fe75be1636186ce1cb032d1dc99d666b483ff2 100644 (file)
@@ -1,3 +1,11 @@
+2010-07-08  Anatoly Sokolov  <aesok@post.ru>
+
+       * config/ia64/ia64.h (OVERRIDE_OPTIONS): Remove macros.
+       * config/ia64/ia64-protos.h (ia64_override_options): Remove.
+       * config/ia64/ia64.c (TARGET_OPTION_OVERRIDE): Define.
+       (ia64_override_options): Rename to...
+       (ia64_option_override): ... this one. Make static.
+
 2010-07-08  Eric Botcazou  <ebotcazou@adacore.com>
 
        PR middle-end/44843
index a5914b1a5ac749dc4ac192c25f0ee689019fd792..0a5af40f489a9c40eebb8f5e5744a11da77567d8 100644 (file)
@@ -86,7 +86,6 @@ extern int ia64_epilogue_uses (int);
 extern int ia64_eh_uses (int);
 extern void emit_safe_across_calls (void);
 extern void ia64_init_builtins (void);
-extern void ia64_override_options (void);
 extern int ia64_dbx_register_number (int);
 
 extern rtx ia64_return_addr_rtx (HOST_WIDE_INT, rtx);
index 032b4689b03582a9480c3872724478c98b883ae7..865d2abb50273a6a92fa18dc5ddbbc50c504fc91 100644 (file)
@@ -201,6 +201,7 @@ static rtx gen_movdi_x (rtx, rtx, rtx);
 static rtx gen_fr_spill_x (rtx, rtx, rtx);
 static rtx gen_fr_restore_x (rtx, rtx, rtx);
 
+static void ia64_option_override (void);
 static bool ia64_can_eliminate (const int, const int);
 static enum machine_mode hfa_element_mode (const_tree, bool);
 static void ia64_setup_incoming_varargs (CUMULATIVE_ARGS *, enum machine_mode,
@@ -354,6 +355,9 @@ static const struct attribute_spec ia64_attribute_table[] =
 #undef TARGET_ASM_INTEGER
 #define TARGET_ASM_INTEGER ia64_assemble_integer
 
+#undef TARGET_OPTION_OVERRIDE
+#define TARGET_OPTION_OVERRIDE ia64_option_override
+
 #undef TARGET_ASM_FUNCTION_PROLOGUE
 #define TARGET_ASM_FUNCTION_PROLOGUE ia64_output_function_prologue
 #undef TARGET_ASM_FUNCTION_END_PROLOGUE
@@ -5564,10 +5568,10 @@ ia64_handle_option (size_t code, const char *arg, int value)
     }
 }
 
-/* Implement OVERRIDE_OPTIONS.  */
+/* Implement TARGET_OPTION_OVERRIDE.  */
 
-void
-ia64_override_options (void)
+static void
+ia64_option_override (void)
 {
   if (TARGET_AUTO_PIC)
     target_flags |= MASK_CONST_GP;
index f631cee23c00c98e85229906c7e3eec463dbf35c..047a0436182e357e0dc7174febf23b76f3c14093 100644 (file)
@@ -116,13 +116,6 @@ enum processor_type
 
 extern enum processor_type ia64_tune;
 
-/* Sometimes certain combinations of command options do not make sense on a
-   particular target machine.  You can define a macro `OVERRIDE_OPTIONS' to
-   take account of this.  This macro, if defined, is executed once just after
-   all the command options have been parsed.  */
-
-#define OVERRIDE_OPTIONS ia64_override_options ()
-
 /* Some machines may desire to change what optimizations are performed for
    various optimization levels.  This macro, if defined, is executed once just
    after the optimization level is determined and before the remainder of the