diff options
Diffstat (limited to 'gcc/gimple.def')
-rw-r--r-- | gcc/gimple.def | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/gimple.def b/gcc/gimple.def index cee6753d200..716f6e2acbb 100644 --- a/gcc/gimple.def +++ b/gcc/gimple.def @@ -53,6 +53,9 @@ DEFGSCODE(GIMPLE_ERROR_MARK, "gimple_error_mark", NULL) jump target for the comparison. */ DEFGSCODE(GIMPLE_COND, "gimple_cond", struct gimple_statement_with_ops) +/* GIMPLE_DEBUG represents a debug statement. */ +DEFGSCODE(GIMPLE_DEBUG, "gimple_debug", struct gimple_statement_with_ops) + /* GIMPLE_GOTO <TARGET> represents unconditional jumps. TARGET is a LABEL_DECL or an expression node for computed GOTOs. */ DEFGSCODE(GIMPLE_GOTO, "gimple_goto", struct gimple_statement_with_ops) |