projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
de81ffd
)
* genrecog.c (write_node): Remove a useless local variable.
author
Kazu Hirata
<kazu@cs.umass.edu>
Wed, 28 Jan 2004 21:07:09 +0000
(21:07 +0000)
committer
Kazu Hirata
<kazu@gcc.gnu.org>
Wed, 28 Jan 2004 21:07:09 +0000
(21:07 +0000)
From-SVN: r76807
gcc/ChangeLog
patch
|
blob
|
history
gcc/genrecog.c
patch
|
blob
|
history
diff --git
a/gcc/ChangeLog
b/gcc/ChangeLog
index f987470bb7e8b0fd4589492b2ccb88d81c74aaac..594c802eef9bab126646dc91f1a9431f8ed9987a 100644
(file)
--- a/
gcc/ChangeLog
+++ b/
gcc/ChangeLog
@@
-1,3
+1,7
@@
+2004-01-28 Kazu Hirata <kazu@cs.umass.edu>
+
+ * genrecog.c (write_node): Remove a useless local variable.
+
2004-01-28 Ian Lance Taylor <ian@wasabisystems.com>
* Makefile.in (options.c options.h): Use stamp file s-options to
diff --git
a/gcc/genrecog.c
b/gcc/genrecog.c
index e0a225a870a1d631f6e52777b2fd28a5d3ca783c..dc756fe7644133ad02c4c46b00cd5ba8f6f28a34 100644
(file)
--- a/
gcc/genrecog.c
+++ b/
gcc/genrecog.c
@@
-2152,11
+2152,8
@@
write_node (struct decision *p, int depth,
while ((test = test->next) != NULL)
{
- int uncond2;
-
last_test = test;
- uncond2 = is_unconditional (test, subroutine_type);
- if (uncond2 != 0)
+ if (is_unconditional (test, subroutine_type))
break;
printf ("\n && ");