projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1dee9d0
)
* tree-ssa-alias.c: Fix comment.
author
Adam Nemet
<anemet@lnxw.com>
Fri, 19 Nov 2004 02:38:25 +0000
(
02:38
+0000)
committer
Adam Nemet
<nemet@gcc.gnu.org>
Fri, 19 Nov 2004 02:38:25 +0000
(
02:38
+0000)
From-SVN: r90892
gcc/ChangeLog
patch
|
blob
|
history
gcc/tree-ssa-alias.c
patch
|
blob
|
history
diff --git
a/gcc/ChangeLog
b/gcc/ChangeLog
index 92f9186ab9bf9f1420796b906cf1122f4efe42a1..75edb24d43e84ed6c9b2128f43b8681102bfab3d 100644
(file)
--- a/
gcc/ChangeLog
+++ b/
gcc/ChangeLog
@@
-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.
diff --git
a/gcc/tree-ssa-alias.c
b/gcc/tree-ssa-alias.c
index aee68d3c58c7cf76e62297800d0076e76b92cc66..46778fac35fed84bc489a6c1acb317694b4b216c 100644
(file)
--- 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;
}