diff options
| author | Linus Torvalds <torvalds@home.transmeta.com> | 2003-03-25 20:09:14 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-07 20:59:47 -0700 |
| commit | 6093c190f23c24fbe55eae0fd233d14e6dfd1643 (patch) | |
| tree | 5e859ac76e839e9cf2da18ded5fbe58fd68bb25a /show-parse.c | |
| parent | 38795344d7b03fc340b5cabb0a38e22d327836d9 (diff) | |
| download | sparse-dev-6093c190f23c24fbe55eae0fd233d14e6dfd1643.tar.gz | |
Add tree evaluation to a few more statement types (iterators,
switch and case-statements).
Handle varying functions.
Diffstat (limited to 'show-parse.c')
| -rw-r--r-- | show-parse.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/show-parse.c b/show-parse.c index b5d233da..bb0e20f8 100644 --- a/show-parse.c +++ b/show-parse.c @@ -192,6 +192,8 @@ void show_symbol(struct symbol *sym) case SYM_FN: printf("("); show_symbol_list(type->arguments, ", "); + if (type->variadic) + printf(", ..."); printf(")\n"); show_statement(type->stmt); return; |
