diff options
Diffstat (limited to 'test/pecoff/Inputs/armnt-addr32.s')
-rw-r--r-- | test/pecoff/Inputs/armnt-addr32.s | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/pecoff/Inputs/armnt-addr32.s b/test/pecoff/Inputs/armnt-addr32.s new file mode 100644 index 0000000000000..c718e9518af99 --- /dev/null +++ b/test/pecoff/Inputs/armnt-addr32.s @@ -0,0 +1,18 @@ + +@ static const int i = 0; +@ const int * const is[] = { &i, }; + + .syntax unified + .thumb + .text + + .section .rdata,"rd" + .align 2 # @i +i: + .long 0 # 0x0 + + .global is # @is + .align 2 +is: + .long i + |