annotate dmd/backend/DT.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children e28b18c23469
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
1 module dmd.backend.DT;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
2
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
3 import dmd.backend.dt_t;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
4
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
5 enum DT
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
6 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
7 DT_abytes,
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
8 DT_azeros, // 1
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
9 DT_xoff,
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
10 DT_1byte,
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
11 DT_nbytes,
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
12 DT_common,
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
13 DT_symsize,
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
14 DT_coff,
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
15 DT_ibytes, // 8
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
16 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
17
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
18 import dmd.EnumUtils;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
19 mixin(BringToCurrentScope!(DT));