tree.c (build_common_tree_nodes_2): Make va_list_type_node be a copy of ptr_type_node rather than ptr_type_node itself.
* tree.c (build_common_tree_nodes_2): Make va_list_type_node be a copy of ptr_type_node rather than ptr_type_node itself. From-SVN: r37286
This commit is contained in:
parent
bf103ec201
commit
0dec5df959
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2000-11-07 Joseph S. Myers <jsm28@cam.ac.uk>
|
||||
|
||||
* tree.c (build_common_tree_nodes_2): Make va_list_type_node be a
|
||||
copy of ptr_type_node rather than ptr_type_node itself.
|
||||
|
||||
Tue Nov 7 06:29:24 2000 J"orn Rennecke <amylaar@redhat.com>
|
||||
|
||||
* combine.c (recog_for_combine): Allocate uninitialized vector with
|
||||
|
|
|
@ -4946,7 +4946,7 @@ build_common_tree_nodes_2 (short_double)
|
|||
#ifdef BUILD_VA_LIST_TYPE
|
||||
BUILD_VA_LIST_TYPE (va_list_type_node);
|
||||
#else
|
||||
va_list_type_node = ptr_type_node;
|
||||
va_list_type_node = build_type_copy (ptr_type_node);
|
||||
#endif
|
||||
|
||||
V4SF_type_node = make_node (VECTOR_TYPE);
|
||||
|
|
Loading…
Add table
Reference in a new issue