diff options
Diffstat (limited to 'gcc/tree-nested.c')
| -rw-r--r-- | gcc/tree-nested.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/tree-nested.c b/gcc/tree-nested.c index 166debb..0b78d0e 100644 --- a/gcc/tree-nested.c +++ b/gcc/tree-nested.c @@ -148,7 +148,8 @@ create_tmp_var_for (struct nesting_info *info, tree type, const char *prefix)    DECL_CONTEXT (tmp_var) = info->context;    TREE_CHAIN (tmp_var) = info->new_local_var_chain;    DECL_SEEN_IN_BIND_EXPR_P (tmp_var) = 1; -  if (TREE_CODE (type) == COMPLEX_TYPE) +  if (TREE_CODE (type) == COMPLEX_TYPE +      || TREE_CODE (type) == VECTOR_TYPE)      DECL_GIMPLE_REG_P (tmp_var) = 1;    info->new_local_var_chain = tmp_var;  | 
