diff options
author | Richard Henderson <rth@cygnus.com> | 1999-07-25 18:19:02 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-07-25 18:19:02 -0700 |
commit | 8824cf7e49d961c4c0d95efcaf9ca5fc90c02400 (patch) | |
tree | 1551291db3cd32d648f98187a66d751c8b12eea6 /gcc | |
parent | fcd2e402235a12b0dcfc69cece6eb669bc091ab2 (diff) | |
download | gcc-8824cf7e49d961c4c0d95efcaf9ca5fc90c02400.zip gcc-8824cf7e49d961c4c0d95efcaf9ca5fc90c02400.tar.gz gcc-8824cf7e49d961c4c0d95efcaf9ca5fc90c02400.tar.bz2 |
* decl.c (va_list_type_node): New.
From-SVN: r28240
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ch/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/ch/decl.c | 3 | ||||
-rw-r--r-- | gcc/java/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/java/decl.c | 2 |
4 files changed, 13 insertions, 0 deletions
diff --git a/gcc/ch/ChangeLog b/gcc/ch/ChangeLog index 209a5d3..2e5d95f 100644 --- a/gcc/ch/ChangeLog +++ b/gcc/ch/ChangeLog @@ -1,3 +1,7 @@ +1999-07-25 Richard Henderson <rth@cygnus.com> + + * decl.c (va_list_type_node): New. + 1999-06-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * Make-lang.in (CHILL.stage1): Depend on stage1-start. diff --git a/gcc/ch/decl.c b/gcc/ch/decl.c index f69b88c..84c7b2d 100644 --- a/gcc/ch/decl.c +++ b/gcc/ch/decl.c @@ -374,6 +374,9 @@ tree void_list_node; /* Nodes for types `void *' and `const void *'. */ tree ptr_type_node, const_ptr_type_node; +/* __builtin_va_list; not used by chill, but referenced in target files. */ +tree va_list_type_node; + /* type of initializer structure, which points to a module's module-level code, and to the next such structure. */ diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index cc4ce98..45e0011 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,7 @@ +1999-07-25 Richard Henderson <rth@cygnus.com> + + * decl.c (va_list_type_node): New. + 1999-07-25 Anthony Green <green@cygnus.com> * gjavah.c (print_stub): New function. diff --git a/gcc/java/decl.c b/gcc/java/decl.c index 6779747..466abc9 100644 --- a/gcc/java/decl.c +++ b/gcc/java/decl.c @@ -370,6 +370,8 @@ tree soft_irem_node; tree soft_ldiv_node; tree soft_lrem_node; +/* __builtin_va_list; unused by java, but referenced by target files. */ +tree va_list_type_node; /* Build (and pushdecl) a "promoted type" for all standard types shorter than int. */ |