diff options
author | Jan Hubicka <jh@suse.cz> | 2005-07-13 17:34:16 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2005-07-13 15:34:16 +0000 |
commit | 98b6d47767360e010bc243995ff1091cc2ef9c3d (patch) | |
tree | 37c5c4a2b28a230bd833db67c59e7575245c66c6 /gcc/tree-ssa-operands.c | |
parent | bbcbc3e07f4467ba76830a80a011aee53bc4f195 (diff) | |
download | gcc-98b6d47767360e010bc243995ff1091cc2ef9c3d.zip gcc-98b6d47767360e010bc243995ff1091cc2ef9c3d.tar.gz gcc-98b6d47767360e010bc243995ff1091cc2ef9c3d.tar.bz2 |
* tree-ssa-operands.c (get_expr_operands): Fix typo in previous patch.
From-SVN: r101972
Diffstat (limited to 'gcc/tree-ssa-operands.c')
-rw-r--r-- | gcc/tree-ssa-operands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-operands.c b/gcc/tree-ssa-operands.c index 98b4766..f4eb109 100644 --- a/gcc/tree-ssa-operands.c +++ b/gcc/tree-ssa-operands.c @@ -1326,7 +1326,7 @@ get_expr_operands (tree stmt, tree *expr_p, int flags) bool exact; if (overlap_subvar (offset, size, sv, &exact)) { - bool subvar_flags = flags; + int subvar_flags = flags; if (!exact) subvar_flags &= ~opf_kill_def; add_stmt_operand (&sv->var, s_ann, subvar_flags); |