diff options
author | Melody Horn <melody@boringcactus.com> | 2020-10-25 03:01:32 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2020-10-25 03:01:32 -0600 |
commit | 1c077ddba5dccab7b8797120da3c8762ddd66b62 (patch) | |
tree | 42240cf8804b40b0bda36895c7c3e5d1d35a3aec /crowbar_reference_compiler | |
parent | 6fe532df3d860576b7af7375056cfe2fea27700d (diff) | |
download | reference-compiler-1c077ddba5dccab7b8797120da3c8762ddd66b62.tar.gz reference-compiler-1c077ddba5dccab7b8797120da3c8762ddd66b62.zip |
don't print header names
Diffstat (limited to 'crowbar_reference_compiler')
-rw-r--r-- | crowbar_reference_compiler/ssagen.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/crowbar_reference_compiler/ssagen.py b/crowbar_reference_compiler/ssagen.py index 68332f3..8d4b6be 100644 --- a/crowbar_reference_compiler/ssagen.py +++ b/crowbar_reference_compiler/ssagen.py @@ -17,7 +17,6 @@ class SsaGenVisitor(NodeVisitor): assert included_header.type == 'string_literal' included_header = included_header.data assert semicolon.text[0].type == ';' - print("including", included_header) return '' def visit_FunctionDefinition(self, node, visited_children): |