From 664fbc5f5c947aaa04bbbf132d9c935959e34a9c Mon Sep 17 00:00:00 2001 From: dec05eba Date: Wed, 14 Aug 2019 01:30:08 +0200 Subject: Move program code generation and execution out of program (make it generic) --- tools/highlevel_c.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/highlevel_c.py') diff --git a/tools/highlevel_c.py b/tools/highlevel_c.py index 2cff3b3..b1c2dc3 100755 --- a/tools/highlevel_c.py +++ b/tools/highlevel_c.py @@ -72,7 +72,7 @@ def main(): idx = clang.cindex.Index.create() for filepath in compile_commands_get_files(compile_commands_file): - print("Parsing file: %s" % filepath) + #print("Parsing file: %s" % filepath) tu = idx.parse(filepath, args=['-std=c89'], options=0) parse(tu.cursor) -- cgit v1.2.3