fixes yet another GAS parsing bug

This commit is contained in:
Araq
2015-01-29 10:11:29 +01:00
parent 8710a37384
commit bd7681f794

View File

@@ -930,8 +930,8 @@ proc genAsmOrEmitStmt(p: BProc, t: PNode, isAsmStmt=false): PRope =
if isAsmStmt and hasGnuAsm in CC[cCompiler].props:
for x in splitLines(res):
var j = 0
while x[j] in {' ', '\t', ':'}: inc(j)
if x[j] == '"':
while x[j] in {' ', '\t'}: inc(j)
if x[j] == ':':
# some clobber register list:
app(result, x); app(result, tnl)
elif x[j] != '\0':