[svn r325] Removed dead code.

Added license info to code from GDC (David Friedman permitted us to use the files under the Artistic License).
Added asmLabel check to DtoGoto to avoid jumping into inline asm. Doesn't work currently as LabelDsymbol::asmLabel is never set to true.
This commit is contained in:
Christian Kamm
2008-06-25 23:42:38 +02:00
parent 7250b0630c
commit b064c794de
6 changed files with 12 additions and 86 deletions

View File

@@ -1045,7 +1045,6 @@ void LabelStatement::toIR(IRState* p)
if (p->asmBlock)
{
IRAsmStmt* a = new IRAsmStmt;
// a->code = ".LDASM_";
a->code += ident->toChars();
a->code += ":";
p->asmBlock->s.push_back(a);