diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-01 07:03:06 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-01 07:03:06 +0000 |
commit | fe3f4effe9ec65b94f109091cda5ecb9b1e8c639 (patch) | |
tree | 81f4ca9618d35290e5898ce827bf385c255ac25c /gcc/config/mips/iris6.h | |
parent | 18fe718e28d2dfac79f2e20dec4fc72d9185422c (diff) | |
download | gcc-fe3f4effe9ec65b94f109091cda5ecb9b1e8c639.tar.gz |
* iris6.h (BUILD_VA_LIST_TYPE): Define.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29751 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/mips/iris6.h')
-rw-r--r-- | gcc/config/mips/iris6.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/config/mips/iris6.h b/gcc/config/mips/iris6.h index 47d4ea85d39..62160febb0f 100644 --- a/gcc/config/mips/iris6.h +++ b/gcc/config/mips/iris6.h @@ -438,6 +438,12 @@ do \ } \ while (0) +/* Define the `__builtin_va_list' type for the ABI. On Irix6, this + type is `char *'. */ +#undef BUILD_VA_LIST_TYPE +#define BUILD_VA_LIST_TYPE(VALIST) \ + (VALIST) = build_pointer_type (char_type_node) + /* Output the size directive for a decl in rest_of_decl_compilation in the case where we did not do so before the initializer. Once we find the error_mark_node, we know that the value of |