mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-06 05:20:26 +08:00
tree-ssa-alias.c (create_global_var): Use void_type_node, not size_type_node.
2004-12-05 Daniel Berlin <dberlin@dberlin.org> * tree-ssa-alias.c (create_global_var): Use void_type_node, not size_type_node. From-SVN: r91768
This commit is contained in:
parent
caace8f5df
commit
b07f8ee279
@ -1,3 +1,8 @@
|
||||
2004-12-05 Daniel Berlin <dberlin@dberlin.org>
|
||||
|
||||
* tree-ssa-alias.c (create_global_var): Use void_type_node,
|
||||
not size_type_node.
|
||||
|
||||
2004-12-05 Kazu Hirata <kazu@cs.umass.edu>
|
||||
|
||||
* expr.c (expand_expr_real_1): Abort on COND_EXPR of
|
||||
|
@ -2201,7 +2201,7 @@ static void
|
||||
create_global_var (void)
|
||||
{
|
||||
global_var = build_decl (VAR_DECL, get_identifier (".GLOBAL_VAR"),
|
||||
size_type_node);
|
||||
void_type_node);
|
||||
DECL_ARTIFICIAL (global_var) = 1;
|
||||
TREE_READONLY (global_var) = 0;
|
||||
DECL_EXTERNAL (global_var) = 1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user