diff --git a/compiler/ccgstmts.nim b/compiler/ccgstmts.nim index fbbd6a86a6..d7683f2c33 100644 --- a/compiler/ccgstmts.nim +++ b/compiler/ccgstmts.nim @@ -931,7 +931,7 @@ proc genAsmOrEmitStmt(p: BProc, t: PNode, isAsmStmt=false): PRope = for x in splitLines(res): var j = 0 while x[j] in {' ', '\t'}: inc(j) - if x[j] == ':': + if x[j] in {'"', ':'}: # some clobber register list: app(result, x); app(result, tnl) elif x[j] != '\0':