Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dub.sdl
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@ subPackage {
versions "MARS"
sourcePaths "src/dmd"
excludedSourceFiles "src/dmd/backend/*"
excludedSourceFiles "src/dmd/{e2ir,eh,glue,iasm,objc_glue,s2ir,tocsym,toctype,toobj,todt,toir}.d"
excludedSourceFiles "src/dmd/{e2ir,eh,glue,iasm,iasmdmd,iasmgcc,objc_glue,s2ir,tocsym,toctype,toobj,todt,toir}.d"
}
28 changes: 27 additions & 1 deletion src/dmd/astbase.d
Original file line number Diff line number Diff line change
Expand Up @@ -2424,7 +2424,7 @@ struct ASTBase
}
}

extern (C++) final class AsmStatement : Statement
extern (C++) class AsmStatement : Statement
{
Token* tokens;

Expand All @@ -2440,6 +2440,32 @@ struct ASTBase
}
}

extern (C++) final class InlineAsmStatement : AsmStatement
{
extern (D) this(const ref Loc loc, Token* tokens)
{
super(loc, tokens);
}

override void accept(Visitor v)
{
v.visit(this);
}
}

extern (C++) final class GccAsmStatement : AsmStatement
{
extern (D) this(const ref Loc loc, Token* tokens)
{
super(loc, tokens);
}

override void accept(Visitor v)
{
v.visit(this);
}
}

extern (C++) class ExpStatement : Statement
{
Expression exp;
Expand Down
Loading