Remove build_empty_property(). It wasn't useful.

This commit is contained in:
David Gibson
2005-06-17 14:32:32 +10:00
parent 81f2e89c75
commit 9ad4587c90
3 changed files with 1 additions and 15 deletions

View File

@@ -88,7 +88,7 @@ propdef: label DT_PROPNAME '=' propdata ';' {
$$ = build_property($2, $4, $1);
}
| label DT_PROPNAME ';' {
$$ = build_empty_property($2, $1);
$$ = build_property($2, empty_data, $1);
}
;