Implement .max and .min type properties
This commit is contained in:
parent
b358f8ba27
commit
c3645ecfb6
@ -952,6 +952,14 @@ namespace gcc
|
|||||||
this->current_expression = build_int_cstu(elna_word_type_node,
|
this->current_expression = build_int_cstu(elna_word_type_node,
|
||||||
TYPE_ALIGN_UNIT(this->current_expression));
|
TYPE_ALIGN_UNIT(this->current_expression));
|
||||||
}
|
}
|
||||||
|
else if (expression->field() == "min" && is_integral_type(this->current_expression))
|
||||||
|
{
|
||||||
|
this->current_expression = TYPE_MIN_VALUE(this->current_expression);
|
||||||
|
}
|
||||||
|
else if (expression->field() == "max" && is_integral_type(this->current_expression))
|
||||||
|
{
|
||||||
|
this->current_expression = TYPE_MAX_VALUE(this->current_expression);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
error_at(expression_location, "type '%s' does not have property '%s'",
|
error_at(expression_location, "type '%s' does not have property '%s'",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user