diff options
Diffstat (limited to 'binutils/testsuite/binutils-all/nm-ver.s')
-rw-r--r-- | binutils/testsuite/binutils-all/nm-ver.s | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/binutils/testsuite/binutils-all/nm-ver.s b/binutils/testsuite/binutils-all/nm-ver.s new file mode 100644 index 0000000..e68c45a --- /dev/null +++ b/binutils/testsuite/binutils-all/nm-ver.s @@ -0,0 +1,9 @@ + .symver foo_old,foo@VER_1 + .hidden foo_old +foo_old: + .dc.b 0 + + .symver foo_new,foo@@VER_2 + .global foo_new +foo_new: + .dc.b 0 |