aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-ssa-alias.c
diff options
context:
space:
mode:
authorAdam Nemet <anemet@lnxw.com>2004-11-19 02:38:25 +0000
committerAdam Nemet <nemet@gcc.gnu.org>2004-11-19 02:38:25 +0000
commit4244df060f3198b5892014bdbb0a6d283b69f667 (patch)
tree9449e6add408669360115bb6c1964ecc7b4570c3 /gcc/tree-ssa-alias.c
parent1dee9d0d6da42b59b43e19e12d27ba124eeb4a9f (diff)
downloadgcc-4244df060f3198b5892014bdbb0a6d283b69f667.zip
gcc-4244df060f3198b5892014bdbb0a6d283b69f667.tar.gz
gcc-4244df060f3198b5892014bdbb0a6d283b69f667.tar.bz2
* tree-ssa-alias.c: Fix comment.
From-SVN: r90892
Diffstat (limited to 'gcc/tree-ssa-alias.c')
-rw-r--r--gcc/tree-ssa-alias.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/tree-ssa-alias.c b/gcc/tree-ssa-alias.c
index aee68d3..46778fa 100644
--- a/gcc/tree-ssa-alias.c
+++ b/gcc/tree-ssa-alias.c
@@ -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;
}