Don't PROVIDE over top of common symbols
[deliverable/binutils-gdb.git] / ld / testsuite / ld-nds32 / relax_load_store.s
1 .data
2 .global myword
3 myword:
4 .word 0x11
5 .globl myshort
6 myshort:
7 .short 0x11
8 .globl mybyte
9 mybyte:
10 .byte 0x11
11
12 .text
13 .global _start
14 _start:
15 l.w $r0, myword
16 l.h $r0, myshort
17 l.b $r0, mybyte
This page took 0.030377 seconds and 4 git commands to generate.