diff options
author | Patrick Palka <patrick@parcs.ath.cx> | 2014-04-29 16:30:20 +0700 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2014-04-29 09:30:20 +0000 |
commit | 36f291f7656bfdb4103fa3dfb3e60fbbca5b1169 (patch) | |
tree | ed32f23bef68473254e910ebd09176363796ebef /gcc/tree-vrp.c | |
parent | d3a3182b5d2ca6551e241ec22f171299b2495c4e (diff) | |
download | gcc-36f291f7656bfdb4103fa3dfb3e60fbbca5b1169.zip gcc-36f291f7656bfdb4103fa3dfb3e60fbbca5b1169.tar.gz gcc-36f291f7656bfdb4103fa3dfb3e60fbbca5b1169.tar.bz2 |
invoke.texi: Fix typo.
2014-04-29 Patrick Palka <patrick@parcs.ath.cx>
* doc/invoke.texi: Fix typo.
* tree-vrp.c: Fix typos.
* gimple.c (infer_nonnull_range): Reorder operands of an &&
condition.
From-SVN: r209891
Diffstat (limited to 'gcc/tree-vrp.c')
-rw-r--r-- | gcc/tree-vrp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-vrp.c b/gcc/tree-vrp.c index 042f712..0dfbfca 100644 --- a/gcc/tree-vrp.c +++ b/gcc/tree-vrp.c @@ -4432,7 +4432,7 @@ debug_all_value_ranges (void) /* Given a COND_EXPR COND of the form 'V OP W', and an SSA name V, create a new SSA name N and return the assertion assignment - 'V = ASSERT_EXPR <V, V OP W>'. */ + 'N = ASSERT_EXPR <V, V OP W>'. */ static gimple build_assert_expr_for (tree cond, tree v) @@ -6118,7 +6118,7 @@ process_assert_insertions (void) } else { - y = ASSERT_EXPR <y, x <= y> + y = ASSERT_EXPR <y, x >= y> x = y + 3 } |