aboutsummaryrefslogtreecommitdiff
path: root/gdb/f-exp.y
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2003-01-31 23:22:07 +0000
committerAndrew Cagney <cagney@redhat.com>2003-01-31 23:22:07 +0000
commit8dbb1c6595ac7eab11c8d8d1706eba852adf4f56 (patch)
tree248190002e250667482afb7dc601a81b657b7834 /gdb/f-exp.y
parent8731e58ec78462405054a5229a108dc5fda8418a (diff)
downloadgdb-8dbb1c6595ac7eab11c8d8d1706eba852adf4f56.zip
gdb-8dbb1c6595ac7eab11c8d8d1706eba852adf4f56.tar.gz
gdb-8dbb1c6595ac7eab11c8d8d1706eba852adf4f56.tar.bz2
2003-01-31 Andrew Cagney <ac131313@redhat.com>
* objc-exp.y, c-exp.y, f-exp.y: Remove PTR casts. * utils.c: Update comments documenting legitimate uses of PTR.
Diffstat (limited to 'gdb/f-exp.y')
-rw-r--r--gdb/f-exp.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/f-exp.y b/gdb/f-exp.y
index 56fd70a..6966231 100644
--- a/gdb/f-exp.y
+++ b/gdb/f-exp.y
@@ -564,7 +564,7 @@ direct_abs_decl: '(' abs_decl ')'
func_mod: '(' ')'
{ $$ = 0; }
| '(' nonempty_typelist ')'
- { free ((PTR)$2); $$ = 0; }
+ { free ($2); $$ = 0; }
;
typebase /* Implements (approximately): (type-qualifier)* type-specifier */