@@ -22,6 +22,23 @@
#include "expop.h"
+extern struct value *ada_unop_neg (struct type *expect_type,
+ struct expression *exp,
+ enum noside noside, enum exp_opcode op,
+ struct value *arg1);
+extern struct value *ada_atr_tag (struct type *expect_type,
+ struct expression *exp,
+ enum noside noside, enum exp_opcode op,
+ struct value *arg1);
+extern struct value *ada_atr_size (struct type *expect_type,
+ struct expression *exp,
+ enum noside noside, enum exp_opcode op,
+ struct value *arg1);
+extern struct value *ada_abs (struct type *expect_type,
+ struct expression *exp,
+ enum noside noside, enum exp_opcode op,
+ struct value *arg1);
+
namespace expr
{
@@ -87,6 +104,11 @@ class ada_ternop_range_operation
{ return TERNOP_IN_RANGE; }
};
+using ada_neg_operation = unop_operation<UNOP_NEG, ada_unop_neg>;
+using ada_atr_tag_operation = unop_operation<OP_ATR_TAG, ada_atr_tag>;
+using ada_atr_size_operation = unop_operation<OP_ATR_SIZE, ada_atr_size>;
+using ada_abs_operation = unop_operation<UNOP_ABS, ada_abs>;
+
} /* namespace expr */
#endif /* ADA_EXP_H */
@@ -10129,7 +10129,7 @@ eval_ternop_in_range (struct type *expect_type, struct expression *exp,
/* A helper function for UNOP_NEG. */
-static value *
+value *
ada_unop_neg (struct type *expect_type,
struct expression *exp,
enum noside noside, enum exp_opcode op,
@@ -10185,7 +10185,7 @@ ada_unop_in_range (struct type *expect_type,
/* A helper function for OP_ATR_TAG. */
-static value *
+value *
ada_atr_tag (struct type *expect_type,
struct expression *exp,
enum noside noside, enum exp_opcode op,
@@ -10199,7 +10199,7 @@ ada_atr_tag (struct type *expect_type,
/* A helper function for OP_ATR_SIZE. */
-static value *
+value *
ada_atr_size (struct type *expect_type,
struct expression *exp,
enum noside noside, enum exp_opcode op,
@@ -10224,7 +10224,7 @@ ada_atr_size (struct type *expect_type,
/* A helper function for UNOP_ABS. */
-static value *
+value *
ada_abs (struct type *expect_type,
struct expression *exp,
enum noside noside, enum exp_opcode op,