diff options
author | dec05eba <dec05eba@protonmail.com> | 2019-08-14 01:30:08 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-07-25 14:36:46 +0200 |
commit | 664fbc5f5c947aaa04bbbf132d9c935959e34a9c (patch) | |
tree | fb25c4d6b8ccc5c6c7d02ad1170947096ff684e9 /tools | |
parent | ea97370f973374f863e4296c2bb872be8b5235a3 (diff) |
Move program code generation and execution out of program (make it generic)
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/highlevel_c.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |