aboutsummaryrefslogtreecommitdiff
path: root/libtcc.c
diff options
context:
space:
mode:
Diffstat (limited to 'libtcc.c')
-rw-r--r--libtcc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libtcc.c b/libtcc.c
index 4cea4a8..fbc2e50 100644
--- a/libtcc.c
+++ b/libtcc.c
@@ -1177,13 +1177,13 @@ ST_FUNC int tcc_add_file_internal(TCCState *s1, const char *filename, int flags)
#ifdef CONFIG_TCC_ASM
if (!strcmp(ext, "S")) {
- /* preprocessed assembler */
+ /* non preprocessed assembler */
ret = tcc_assemble(s1, 1);
goto the_end;
}
if (!strcmp(ext, "s")) {
- /* non preprocessed assembler */
+ /* preprocessed assembler */
ret = tcc_assemble(s1, 0);
goto the_end;
}