* gcc/config/i386/i386.c (ix86_expand_call, x86_output_mi_thunk):
authorstuart <stuart@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 19 Dec 2003 23:37:38 +0000 (23:37 +0000)
committerstuart <stuart@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 19 Dec 2003 23:37:38 +0000 (23:37 +0000)
Trivial fixes for i386.c on Darwin/x86.

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

gcc/ChangeLog
gcc/config/i386/i386.c

index be2d353..c761ccc 100644 (file)
@@ -1,3 +1,7 @@
+2003-12-19  Stuart Hastings  <stuart@apple.com>
+       * gcc/config/i386/i386.c (ix86_expand_call, x86_output_mi_thunk):
+       Trivial fixes for i386.c on Darwin/x86.
+       
 2003-12-19  Fariborz Jahanian <fjahanian@apple.com>
         * config/rs6000/rs6000.c (legitimate_lo_sum_address_p): Add code to
         recognize macho-style lo_sum adrress patterns.
index bd57078..a93d82e 100644 (file)
@@ -11614,7 +11614,8 @@ ix86_expand_strlensi_unroll_1 (rtx out, rtx align_rtx)
 }
 
 void
-ix86_expand_call (rtx retval, rtx fnaddr, rtx callarg1, rtx callarg2,
+ix86_expand_call (rtx retval, rtx fnaddr, rtx callarg1,
+                 rtx callarg2 ATTRIBUTE_UNUSED,
                  rtx pop, int sibcall)
 {
   rtx use = NULL, call;
@@ -15462,7 +15463,7 @@ x86_output_mi_thunk (FILE *file ATTRIBUTE_UNUSED,
 #if TARGET_MACHO
        if (TARGET_MACHO)
          {
-           char *ip = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (function));
+           const char *ip = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (function));
            tmp = gen_rtx_SYMBOL_REF (Pmode, machopic_stub_name (ip));
            tmp = gen_rtx_MEM (QImode, tmp);
            xops[0] = tmp;