annotate dmd/backend/DT.d @ 114:e28b18c23469

added a module dmd.common for commonly used stuff it currently holds code for consistency checking of predefined versions also added a VisualD project file
author Trass3r
date Wed, 01 Sep 2010 18:21:58 +0200
parents 10317f0c89a5
children
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
114
e28b18c23469 added a module dmd.common for commonly used stuff
Trass3r
parents: 0
diff changeset
3 import dmd.common;
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
4 import dmd.backend.dt_t;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
5
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
6 enum DT
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
7 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
8 DT_abytes,
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
9 DT_azeros, // 1
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
10 DT_xoff,
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
11 DT_1byte,
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
12 DT_nbytes,
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
13 DT_common,
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
14 DT_symsize,
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
15 DT_coff,
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
16 DT_ibytes, // 8
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
17 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
18
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
19 import dmd.EnumUtils;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
20 mixin(BringToCurrentScope!(DT));