diff options
Diffstat (limited to 'gcc/tree-ssa-structalias.c')
-rw-r--r-- | gcc/tree-ssa-structalias.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/tree-ssa-structalias.c b/gcc/tree-ssa-structalias.c index 6db8298..11427ec 100644 --- a/gcc/tree-ssa-structalias.c +++ b/gcc/tree-ssa-structalias.c @@ -2765,8 +2765,7 @@ could_have_pointers (tree t) tree type = TREE_TYPE (t); if (POINTER_TYPE_P (type) - || AGGREGATE_TYPE_P (type) - || TREE_CODE (type) == COMPLEX_TYPE) + || AGGREGATE_TYPE_P (type)) return true; return false; |