summaryrefslogtreecommitdiff
path: root/gdb/c-exp.y
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2012-07-27 19:22:16 +0000
committerTom Tromey <tromey@redhat.com>2012-07-27 19:22:16 +0000
commitcb56199a112a362ce87773465078e3ea9932e3af (patch)
tree7679ead63b585a7e691ba1e7a5e4d99210753970 /gdb/c-exp.y
parentabf2196f1fcb4096ad9e9d3126569b598382d3e3 (diff)
downloadgdb-cb56199a112a362ce87773465078e3ea9932e3af.tar.gz
* c-exp.y (classify_name): Avoid assignment in condition.
Diffstat (limited to 'gdb/c-exp.y')
-rw-r--r--gdb/c-exp.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/c-exp.y b/gdb/c-exp.y
index 5bcbb0e0597..e5b6d94a199 100644
--- a/gdb/c-exp.y
+++ b/gdb/c-exp.y
@@ -2747,8 +2747,8 @@ classify_name (struct block *block)
if (Class)
{
yylval.class.class = Class;
- if ((sym = lookup_struct_typedef (copy, expression_context_block,
- 1)))
+ sym = lookup_struct_typedef (copy, expression_context_block, 1);
+ if (sym)
yylval.class.type = SYMBOL_TYPE (sym);
return CLASSNAME;
}