diff trunk/src/dil/ast/DefaultVisitor.d @ 681:95a3c28c0f64

Renamed AsmStatement->AsmBlockStatement and AsnInstruction->AsmStatement.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sat, 19 Jan 2008 00:10:57 +0100
parents 6b3e397229c5
children 7541c64fc423
line wrap: on
line diff
--- a/trunk/src/dil/ast/DefaultVisitor.d	Fri Jan 18 23:59:41 2008 +0100
+++ b/trunk/src/dil/ast/DefaultVisitor.d	Sat Jan 19 00:10:57 2008 +0100
@@ -263,9 +263,9 @@
       visitE(s.e);
     static if (is(S == VolatileStatement))
       s.volatileBody && visitS(s.volatileBody);
-    static if (is(S == AsmStatement))
+    static if (is(S == AsmBlockStatement))
       visitS(s.statements);
-    static if (is(S == AsmInstruction))
+    static if (is(S == AsmStatement))
       foreach (op; s.operands)
         visitE(op);
     //AsmAlignStatement has no subnodes.