comparison test/switch1.d @ 14:0e86428ee567 trunk

[svn r18] * Initial support for switch statements - No string switches yet. * Moved Statement::toIR definitions into gen/statements.c - toir.c is still too big. * Removed some BB bloat with ScopeStatements.
author lindquist
date Wed, 03 Oct 2007 02:15:12 +0200
parents
children
comparison
equal deleted inserted replaced
13:3d1d98329fa7 14:0e86428ee567
1 module switch1;
2
3 void main()
4 {
5 int i = 2;
6 int r;
7 switch (i)
8 {
9 case 1: r+=1; break;
10 case 2: r-=2;
11 case 3: r=3; break;
12 default: r=-1;
13 }
14 assert(r == 3);
15 }