Commit ebdf0264 authored by Lev Walkin's avatar Lev Walkin Committed by GitHub

Merge pull request #173 from mattipee/mattipee-no-constraints

Omit constraints code if -fno-constraints
parents 92fc0130 e0b99abe
...@@ -2816,10 +2816,15 @@ do { \ ...@@ -2816,10 +2816,15 @@ do { \
FUNCREF2(free); FUNCREF2(free);
FUNCREF2(print); FUNCREF2(print);
if (!expr->combined_constraints) if (arg->flags & A1C_NO_CONSTRAINTS)
FUNCREF2(constraint); OUT("0,\t/* No check because of -fno-constraints */\n");
else else
FUNCREF(constraint); {
if (!expr->combined_constraints)
FUNCREF2(constraint);
else
FUNCREF(constraint);
}
FUNCREF2(decode_ber); FUNCREF2(decode_ber);
FUNCREF2(encode_der); FUNCREF2(encode_der);
FUNCREF2(decode_xer); FUNCREF2(decode_xer);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment