diff options
Diffstat (limited to 'gcc/go/gofrontend/backend.h')
-rw-r--r-- | gcc/go/gofrontend/backend.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/go/gofrontend/backend.h b/gcc/go/gofrontend/backend.h index 55805941da6..6e852161b3f 100644 --- a/gcc/go/gofrontend/backend.h +++ b/gcc/go/gofrontend/backend.h @@ -284,6 +284,16 @@ class Backend virtual Bexpression* struct_field_expression(Bexpression* bstruct, size_t index, Location) = 0; + // Create an expression that executes BSTAT before BEXPR. + virtual Bexpression* + compound_expression(Bstatement* bstat, Bexpression* bexpr, Location) = 0; + + // Return an expression that executes THEN_EXPR if CONDITION is true, or + // ELSE_EXPR otherwise. ELSE_EXPR may be NULL. + virtual Bexpression* + conditional_expression(Bexpression* condition, Bexpression* then_expr, + Bexpression* else_expr, Location) = 0; + // Statements. // Create an error statement. This is used for cases which should |