| 81 | } |
| 82 | |
| 83 | static struct property *sym_get_default_prop(struct symbol *sym) |
| 84 | { |
| 85 | struct property *prop; |
| 86 | |
| 87 | for_all_defaults(sym, prop) { |
| 88 | prop->visible.tri = expr_calc_value(prop->visible.expr); |
| 89 | if (prop->visible.tri != no) |
| 90 | return prop; |
| 91 | } |
| 92 | return NULL; |
| 93 | } |
| 94 | |
| 95 | struct property *sym_get_range_prop(struct symbol *sym) |
| 96 | { |
no test coverage detected