diff options
author | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-10-05 22:36:16 +0000 |
---|---|---|
committer | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-10-05 22:36:16 +0000 |
commit | c19f64ba7dd0a0f4fdd25fba160cf786de9be853 (patch) | |
tree | e9db46839308f2a73cfea7d3abddd8c7623f4e67 /gcc/tree.def | |
parent | 2eda5fcba2189b547eb74ceaa63cbed223f76e76 (diff) | |
download | gcc-c19f64ba7dd0a0f4fdd25fba160cf786de9be853.tar.gz |
8
* tree.def (GOTO_EXPR): Modified documentation.
* expr.c (expand_expr): Expand GOTO_EXPR into a goto or a computed
goto.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@22859 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.def')
-rw-r--r-- | gcc/tree.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree.def b/gcc/tree.def index 16a07d80c37..71d0687043c 100644 --- a/gcc/tree.def +++ b/gcc/tree.def @@ -721,7 +721,7 @@ DEFTREECODE (POPDCC_EXPR, "popdcc_expr", 's', 0) The type should be void and the value should be ignored. */ DEFTREECODE (LABEL_EXPR, "label_expr", 's', 1) -/* GOTO. Operand 0 is a LABEL_DECL node. +/* GOTO. Operand 0 is a LABEL_DECL node or an expression. The type should be void and the value should be ignored. */ DEFTREECODE (GOTO_EXPR, "goto_expr", 's', 1) |