diff options
author | drow <drow@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-07-26 11:52:19 +0000 |
---|---|---|
committer | drow <drow@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-07-26 11:52:19 +0000 |
commit | 7b050b7b412119d8d958acbc3da8d97e8235ff9a (patch) | |
tree | d53a5fda9fbcebe0370a3e0a07b56791df0d32b7 /gcc/fold-const.c | |
parent | f03e0ae4c960dd170347ebac8fdc174607bc3a28 (diff) | |
download | ppe42-gcc-7b050b7b412119d8d958acbc3da8d97e8235ff9a.tar.gz ppe42-gcc-7b050b7b412119d8d958acbc3da8d97e8235ff9a.zip |
* fold-const.c (fold_read_from_constant_string): Use
build_int_cst_type.
* tree-ssa-ccp.c (fold_const_aggregate_ref): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@126952 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index 5d40406368f..106aa4d3dd5 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -14062,10 +14062,9 @@ fold_read_from_constant_string (tree exp) && (GET_MODE_CLASS (TYPE_MODE (TREE_TYPE (TREE_TYPE (string)))) == MODE_INT) && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (TREE_TYPE (string)))) == 1)) - return fold_convert (TREE_TYPE (exp), - build_int_cst (NULL_TREE, - (TREE_STRING_POINTER (string) - [TREE_INT_CST_LOW (index)]))); + return build_int_cst_type (TREE_TYPE (exp), + (TREE_STRING_POINTER (string) + [TREE_INT_CST_LOW (index)])); } return NULL; } |