From e0b3ecbe06cb47d14ee64dbf1bdbd9cbc27ac648 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Sun, 22 Mar 2015 18:53:50 +0100 Subject: kconfig_parser rewritten and now supports revers dependency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Most of the kconfig_parser is changed. Now dependency are not copied before transfer to CNF and CNF expression is direcly extracted from kconfíg parsed output structures. --- programs/src/kconfig_parser/symlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'programs/src/kconfig_parser/symlist.c') diff --git a/programs/src/kconfig_parser/symlist.c b/programs/src/kconfig_parser/symlist.c index 7dcd2c6..5423163 100644 --- a/programs/src/kconfig_parser/symlist.c +++ b/programs/src/kconfig_parser/symlist.c @@ -37,7 +37,7 @@ void symlist_print(struct symlist *sl) { printf("%d:%s\n", sl->array[i].id, sl->array[i].name); if (sl->array[i].be != NULL) { printf(" "); - boolexp_print(sl->array[i].be); + cnf_printf(sl->array[i].be); printf("\n"); } } -- cgit v1.2.3