Fix #251
This commit is contained in:
parent
e3bf26987b
commit
821f9439e4
|
|
@ -255,7 +255,7 @@ private:
|
|||
else if (isBasicType(current.type))
|
||||
{
|
||||
writeToken();
|
||||
if (currentIs(tok!"identifier") || isKeyword(current.type))
|
||||
if (currentIs(tok!"identifier") || isKeyword(current.type) || inAsm)
|
||||
write(" ");
|
||||
}
|
||||
else if (isOperator(current.type))
|
||||
|
|
|
|||
|
|
@ -0,0 +1,9 @@
|
|||
void stuff()
|
||||
{
|
||||
asm
|
||||
{
|
||||
int 80;
|
||||
int 0b10;
|
||||
int 0x80;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
void stuff() {
|
||||
asm {
|
||||
int 80;
|
||||
int 0b10;
|
||||
int 0x80;
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
void stuff() {
|
||||
asm {
|
||||
int 80;
|
||||
int 0b10;
|
||||
int 0x80;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue