Commit 4f1cad00 by Richard Henderson Committed by Richard Henderson

mips.c (mips_build_builtin_va_list): Use runtime test for irix6 rather than preprocessor test.

        * config/mips/mips.c (mips_build_builtin_va_list): Use runtime
        test for irix6 rather than preprocessor test.

From-SVN: r73089
parent 671ca9ec
2003-10-30 Richard Henderson <rth@redhat.com>
* config/mips/mips.c (mips_build_builtin_va_list): Use runtime
test for irix6 rather than preprocessor test.
2003-10-30 Richard Henderson <rth@redhat.com>
* cppcharset.c (one_utf8_to_utf16): Initialize 's' to silence warning.
2003-10-30 Ulrich Weigand <uweigand@de.ibm.com>
......
......@@ -4030,16 +4030,12 @@ mips_build_builtin_va_list (void)
layout_type (record);
return record;
}
else if (TARGET_IRIX && !TARGET_IRIX5)
/* On IRIX 6, this type is 'char *'. */
return build_pointer_type (char_type_node);
else
{
#if defined(TARGET_IRIX) && !TARGET_IRIX5
/* On IRIX 6, this type is 'char *'. */
return build_pointer_type (char_type_node);
#else
/* Otherwise, we use 'void *'. */
return ptr_type_node;
#endif
}
/* Otherwise, we use 'void *'. */
return ptr_type_node;
}
/* Implement va_start. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment