aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-pe/pdb-types1a.s
blob: a2ee9a9972fea24e9c13f12b171fbd4a68378dfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
.equ CV_SIGNATURE_C13, 4

.equ T_LONG, 0x0012

.equ LF_MODIFIER, 0x1001

.section ".debug$T", "rn"

.long CV_SIGNATURE_C13

# Type 1000, volatile long
.mod1:
.short .mod2 - .mod1 - 2
.short LF_MODIFIER
.long T_LONG
.short 2 # volatile
.p2align 2

# Type 1001, const long
.mod2:
.short .types_end - .mod2 - 2
.short LF_MODIFIER
.long T_LONG
.short 1 # const
.p2align 2

.types_end: