This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
[commit] minor cleanup in lookup_typename
- From: dje at google dot com (Doug Evans)
- To: gdb-patches at sourceware dot org
- Date: Thu, 28 Jun 2012 10:14:14 -0700 (PDT)
- Subject: [commit] minor cleanup in lookup_typename
Hi.
fyi, I committed this minor cleanup.
2012-06-28 Doug Evans <dje@google.com>
* gdbtypes.c (lookup_typename): Rename local variable "tmp" to "type".
Index: gdbtypes.c
===================================================================
RCS file: /cvs/src/src/gdb/gdbtypes.c,v
retrieving revision 1.230
diff -u -p -r1.230 gdbtypes.c
--- gdbtypes.c 23 May 2012 23:45:09 -0000 1.230
+++ gdbtypes.c 28 Jun 2012 17:11:35 -0000
@@ -1140,15 +1140,15 @@ lookup_typename (const struct language_d
const struct block *block, int noerr)
{
struct symbol *sym;
- struct type *tmp;
+ struct type *type;
sym = lookup_symbol (name, block, VAR_DOMAIN, 0);
if (sym != NULL && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
return SYMBOL_TYPE (sym);
- tmp = language_lookup_primitive_type_by_name (language, gdbarch, name);
- if (tmp)
- return tmp;
+ type = language_lookup_primitive_type_by_name (language, gdbarch, name);
+ if (type)
+ return type;
if (noerr)
return NULL;