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

From-SVN: r90892
This commit is contained in:
Adam Nemet 2004-11-19 02:38:25 +00:00 committed by Adam Nemet
parent 1dee9d0d6d
commit 4244df060f
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2004-11-19 Adam Nemet <anemet@lnxw.com>
* tree-ssa-alias.c: Fix comment.
2004-11-19 Kazu Hirata <kazu@cs.umass.edu>
* tree-outof-ssa.c: Fix a comment typo.

View File

@ -236,15 +236,14 @@ tree global_var;
foo (int i)
{
int *p, *q, a, b;
int *p, a, b;
if (i > 10)
p = &a;
else
q = &b;
p = &b;
*p = 3;
*q = 5;
a = b + 2;
return *p;
}