Commit 4244df06 by Adam Nemet Committed by Adam Nemet

* tree-ssa-alias.c: Fix comment.

From-SVN: r90892
parent 1dee9d0d
2004-11-19 Adam Nemet <anemet@lnxw.com>
* tree-ssa-alias.c: Fix comment.
2004-11-19 Kazu Hirata <kazu@cs.umass.edu> 2004-11-19 Kazu Hirata <kazu@cs.umass.edu>
* tree-outof-ssa.c: Fix a comment typo. * tree-outof-ssa.c: Fix a comment typo.
......
...@@ -236,15 +236,14 @@ tree global_var; ...@@ -236,15 +236,14 @@ tree global_var;
foo (int i) foo (int i)
{ {
int *p, *q, a, b; int *p, a, b;
if (i > 10) if (i > 10)
p = &a; p = &a;
else else
q = &b; p = &b;
*p = 3; *p = 3;
*q = 5;
a = b + 2; a = b + 2;
return *p; return *p;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment