db: add a new table which hold parameter types
commit5bf73f473d27d5da82a922f27b80328344a177ad
authorDan Carpenter <dan.carpenter@oracle.com>
Mon, 15 Sep 2014 10:36:11 +0000 (15 13:36 +0300)
committerDan Carpenter <dan.carpenter@oracle.com>
Mon, 15 Sep 2014 10:36:11 +0000 (15 13:36 +0300)
tree4d4cb9c8db7321e3dbcf0f5eda4da9f818105f49
parent7e447e59909e9af329e5d8d10def07f3c6e4b978
db: add a new table which hold parameter types

The immediate purpose of this table is that I want a way to look up which
parameters are void pointers.  If I were doing this from .c code then I
could look at the function definition but I want to do it after the files
have been parsed.

Also I think that this could just be useful information.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Makefile
check_list.h
smatch.h
smatch_data/db/function_type_info.idx [new file with mode: 0644]
smatch_data/db/function_type_info.schema [new file with mode: 0644]
smatch_db.c
smatch_function_info.c [new file with mode: 0644]