summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--preprocessor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/preprocessor.py b/preprocessor.py
index 79fb9224f..10e407380 100644
--- a/preprocessor.py
+++ b/preprocessor.py
@@ -609,7 +609,7 @@ def macro_translator(macro, token, line, show_original_lines=False, do_macro_san
def read_line(l, macro_table):
"""Preprocesses a given line of asm."""
- if l in ["\n", ""]:
+ if l in ["\n", ""] or l[0] == ";":
sys.stdout.write(l)
return # jump out early