aboutsummaryrefslogtreecommitdiff
path: root/expr.c
AgeCommit message (Collapse)Author
2012-10-30Also free memory associated with sub-expressionsPetr Machata
This only called expr_destroy when the sub-expression was owned, but neglected to also call free. Plugs a leak.
2012-08-29Rename value_set_long to value_set_wordPetr Machata
For consistency with value_extract_word
2012-08-29Add expr.c, expr.h, plug in properlyPetr Machata
- in callstack_pop, we don't free arch_ptr. That's because this doesn't get copied over the clone. It's a mere coincidence that fork() doesn't need to save register arguments, and this works. - added copyright notices to files that this touches. This is based on git blame. Only contributors of 10+ lines are added - test suite adjusted to not include "void" type as "don't show this int". Back ends in general need to know the exact type, so this never worked anyway.