aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2019-08-14 01:30:08 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-25 14:36:46 +0200
commit664fbc5f5c947aaa04bbbf132d9c935959e34a9c (patch)
treefb25c4d6b8ccc5c6c7d02ad1170947096ff684e9 /tools
parentea97370f973374f863e4296c2bb872be8b5235a3 (diff)
Move program code generation and execution out of program (make it generic)
Diffstat (limited to 'tools')
-rwxr-xr-xtools/highlevel_c.py2
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)