diff options
author | Richard Guenther <rguenther@suse.de> | 2008-10-22 17:40:29 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2008-10-22 17:40:29 +0000 |
commit | 51c869cac9a2b641ee21172ea193eadef9b1f476 (patch) | |
tree | a8b70739be04da68b2f0658cded9a97e965873d3 /gcc/tree.c | |
parent | a7da8b427fa7de6a459a0a3b33eca9de953aea62 (diff) | |
download | gcc-51c869cac9a2b641ee21172ea193eadef9b1f476.zip gcc-51c869cac9a2b641ee21172ea193eadef9b1f476.tar.gz gcc-51c869cac9a2b641ee21172ea193eadef9b1f476.tar.bz2 |
tree.def (COMPLEX_TYPE): Constrain element type.
2008-10-22 Richard Guenther <rguenther@suse.de>
* tree.def (COMPLEX_TYPE): Constrain element type.
* tree.c (build_complex_type): Assert that.
* tree-ssa-structalias.c (could_have_pointers): Complex types
cannot have pointers.
From-SVN: r141299
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -6168,6 +6168,10 @@ build_complex_type (tree component_type) tree t; hashval_t hashcode; + gcc_assert (INTEGRAL_TYPE_P (component_type) + || SCALAR_FLOAT_TYPE_P (component_type) + || FIXED_POINT_TYPE_P (component_type)); + /* Make a node of the sort we want. */ t = make_node (COMPLEX_TYPE); |