diff options
author | Richard Guenther <rguenther@suse.de> | 2012-05-10 07:58:27 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2012-05-10 07:58:27 +0000 |
commit | 3ac8781c36d6f1ce612e5233dc9254d2d8cee5ca (patch) | |
tree | 1b55fc7996845f84a927496e5f0f6f7aa9d75d19 /gcc/print-tree.c | |
parent | 26c7244823b6d5c3c0cdc86cf411e6e6860ddb16 (diff) | |
download | gcc-3ac8781c36d6f1ce612e5233dc9254d2d8cee5ca.zip gcc-3ac8781c36d6f1ce612e5233dc9254d2d8cee5ca.tar.gz gcc-3ac8781c36d6f1ce612e5233dc9254d2d8cee5ca.tar.bz2 |
cuintp.c (UI_From_gnu): Remove TYPE_IS_SIZETYPE use.
2012-05-10 Richard Guenther <rguenther@suse.de>
ada/
* gcc-interface/cuintp.c (UI_From_gnu): Remove TYPE_IS_SIZETYPE use.
c-family/
* c-common.c (c_sizeof_or_alignof_type): Remove assert and
adjust commentary about TYPE_IS_SIZETYPE types.
* tree.h (TYPE_IS_SIZETYPE): Remove.
* fold-const.c (int_const_binop_1): Remove TYPE_IS_SIZETYPE use.
(extract_muldiv_1): Likewise.
* gimple.c (gtc_visit): Likewise.
(gimple_types_compatible_p): Likewise.
(iterative_hash_canonical_type): Likewise.
(gimple_canonical_types_compatible_p): Likewise.
* gimplify.c (gimplify_one_sizepos): Likewise.
* print-tree.c (print_node): Likewise.
* stor-layout.c (initialize_sizetypes): Do not set TYPE_IS_SIZETYPE.
From-SVN: r187363
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r-- | gcc/print-tree.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c index 466b7db..28f51b0 100644 --- a/gcc/print-tree.c +++ b/gcc/print-tree.c @@ -611,9 +611,6 @@ print_node (FILE *file, const char *prefix, tree node, int indent) || code == QUAL_UNION_TYPE) && TYPE_NO_FORCE_BLK (node)) fputs (" no-force-blk", file); - else if (code == INTEGER_TYPE - && TYPE_IS_SIZETYPE (node)) - fputs (" sizetype", file); if (TYPE_STRING_FLAG (node)) fputs (" string-flag", file); |