diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1996-08-30 14:51:34 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1996-08-30 14:51:34 -0700 |
commit | b50c02f97bc1845cc247cf5972ede73f6ac5f7c8 (patch) | |
tree | c8cb06824488163f378d0d21e7abb9952e366064 | |
parent | cca4647dd45b23c3baa7dc038b89e86288469b3c (diff) | |
download | gcc-b50c02f97bc1845cc247cf5972ede73f6ac5f7c8.zip gcc-b50c02f97bc1845cc247cf5972ede73f6ac5f7c8.tar.gz gcc-b50c02f97bc1845cc247cf5972ede73f6ac5f7c8.tar.bz2 |
(gen_formal_types_die): Delete extra argument from
gen_type_die call.
From-SVN: r12684
-rw-r--r-- | gcc/dwarf2out.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 4e06da6..1bda04e 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -6064,7 +6064,7 @@ gen_formal_types_die (function_or_method_type, context_die) if (formal_type == void_type_node) break; - gen_type_die (formal_type, function_or_method_type, context_die); + gen_type_die (formal_type, context_die); } } |