OSDN Git Service

* config/alpha/alpha.h (ASM_OUTPUT_MI_THUNK): Disable.
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 1 Dec 2000 00:32:12 +0000 (00:32 +0000)
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 1 Dec 2000 00:32:12 +0000 (00:32 +0000)
        * config/alpha/alpha32.h (ASM_OUTPUT_MI_THUNK): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37904 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/alpha/alpha.h
gcc/config/alpha/alpha32.h

index 661ae12..44f8a1f 100644 (file)
@@ -1,5 +1,10 @@
 2000-11-30  Richard Henderson  <rth@redhat.com>
 
+       * config/alpha/alpha.h (ASM_OUTPUT_MI_THUNK): Disable.
+       * config/alpha/alpha32.h (ASM_OUTPUT_MI_THUNK): Likewise.
+
+2000-11-30  Richard Henderson  <rth@redhat.com>
+
        * config/alpha/elf.h (ASM_OUTPUT_SECTION_NAME): Copy elfos.h defn.
        (DO_SELECT_SECTION): New.
        (SELECT_SECTION): Use it.
index 7578224..8645730 100644 (file)
@@ -2236,7 +2236,9 @@ literal_section ()                                                \
 
 /* Output code to add DELTA to the first argument, and then jump to FUNCTION.
    Used for C++ multiple inheritance.  */
-
+/* ??? This is only used with the v2 ABI, and alpha.c makes assumptions
+   about current_function_is_thunk that are not valid with the v3 ABI.  */
+#if 0
 #define ASM_OUTPUT_MI_THUNK(FILE, THUNK_FNDECL, DELTA, FUNCTION)       \
 do {                                                                   \
   const char *fn_name = XSTR (XEXP (DECL_RTL (FUNCTION), 0), 0);       \
@@ -2268,6 +2270,7 @@ do {                                                                      \
     }                                                                  \
   fprintf (FILE, "\t.set noat\n");                                     \
 } while (0)
+#endif
 \f
 
 /* Define results of standard character escape sequences.  */
index fff442e..8214279 100644 (file)
@@ -81,7 +81,9 @@ Boston, MA 02111-1307, USA.  */
 
 /* Output code to add DELTA to the first argument, and then jump to FUNCTION.
    Used for C++ multiple inheritance.  */
-
+/* ??? This is only used with the v2 ABI, and alpha.c makes assumptions
+   about current_function_is_thunk that are not valid with the v3 ABI.  */
+#if 0
 #undef ASM_OUTPUT_MI_THUNK
 #define ASM_OUTPUT_MI_THUNK(FILE, THUNK_FNDECL, DELTA, FUNCTION)       \
 do {                                                                   \
@@ -102,3 +104,4 @@ do {                                                                        \
   assemble_name (FILE, fn_name);                                       \
   fputc ('\n', FILE);                                                  \
 } while (0)
+#endif