diff options
Diffstat (limited to 'gdb/ch-lang.c')
-rw-r--r-- | gdb/ch-lang.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/ch-lang.c b/gdb/ch-lang.c index 9bce588..2b65fb4 100644 --- a/gdb/ch-lang.c +++ b/gdb/ch-lang.c @@ -324,6 +324,8 @@ evaluate_subexp_chill (expect_type, exp, pos, noside) argvec[tem] = 0; /* signal end of arglist */ return call_function_by_hand (argvec[0], nargs, argvec + 1); + default: + break; } while (nargs-- > 0) @@ -332,6 +334,8 @@ evaluate_subexp_chill (expect_type, exp, pos, noside) arg1 = value_subscript (arg1, index); } return (arg1); + default: + break; } return evaluate_subexp_standard (expect_type, exp, pos, noside); |