This commit is contained in:
Hackerpilot 2015-10-09 14:21:30 -07:00
parent 1b6e6a5f4e
commit f9b1997283
4 changed files with 63 additions and 17 deletions

View File

@ -143,6 +143,9 @@ private:
/// True if a space should be placed when parenDepth reaches zero
bool spaceAfterParens;
/// True if we're in an ASM block
bool inAsm;
void formatStep()
{
assert(index < tokens.length);
@ -210,6 +213,27 @@ private:
{
formatElse();
}
else if (currentIs(tok!"asm"))
{
formatKeyword();
while (index < tokens.length && !currentIs(tok!"{"))
formatStep();
if (index < tokens.length)
{
int depth = 1;
formatStep();
inAsm = true;
while (index < tokens.length)
{
if (currentIs(tok!"{"))
++depth;
else if (currentIs(tok!"}"))
--depth;
formatStep();
}
inAsm = false;
}
}
else if (isKeyword(current.type))
{
formatKeyword();
@ -228,7 +252,9 @@ private:
{
writeToken();
if (index < tokens.length && (currentIs(tok!"identifier")
|| isBasicType(current.type) || currentIs(tok!"@") || currentIs(tok!"if")))
|| isBasicType(current.type) || currentIs(tok!"@")
|| currentIs(tok!"if") || isNumberLiteral(tokens[index].type)
|| (inAsm && peekBack2Is(tok!";") && currentIs(tok!"["))))
{
write(" ");
}
@ -699,8 +725,6 @@ private:
void formatBlockHeader()
{
//import std.stdio:stderr;
//stderr.writeln(__FUNCTION__);
immutable bool a = !currentIs(tok!"version") && !currentIs(tok!"debug");
immutable bool b = a
|| astInformation.conditionalWithElseLocations.canFindIndex(current.index);

View File

@ -0,0 +1,8 @@
unittest
{
asm
{
dl 12345;
movdqu [R8], XMM0;
}
}

8
tests/issue0190.d Normal file
View File

@ -0,0 +1,8 @@
unittest
{
asm
{
dl 12345;
movdqu [R8], XMM0;
}
}

View File

@ -0,0 +1,6 @@
unittest {
asm {
dl 12345;
movdqu [R8], XMM0;
}
}