diff options
author | Nick Clifton <nickc@redhat.com> | 2019-05-14 16:16:56 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2019-05-14 16:16:56 +0100 |
commit | c2509a1cc8beff40b1da8f85a3f27bf9df1d6c02 (patch) | |
tree | 335c8d7ad2e7dd00762341934d003f04ce73ade4 | |
parent | e7bd7fba34ae1f892acf1e13ac86fca55b68026d (diff) | |
download | gdb-c2509a1cc8beff40b1da8f85a3f27bf9df1d6c02.zip gdb-c2509a1cc8beff40b1da8f85a3f27bf9df1d6c02.tar.gz gdb-c2509a1cc8beff40b1da8f85a3f27bf9df1d6c02.tar.bz2 |
Add missing verilogtest.s file.
-rw-r--r-- | binutils/testsuite/binutils-all/verilogtest.s | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/binutils/testsuite/binutils-all/verilogtest.s b/binutils/testsuite/binutils-all/verilogtest.s new file mode 100644 index 0000000..3c0900e --- /dev/null +++ b/binutils/testsuite/binutils-all/verilogtest.s @@ -0,0 +1,12 @@ + .globl text_symbol + .text +text_symbol: +static_text_symbol: + .long 0x04030201 + .long external_symbol + .globl data_symbol + .data +data_symbol: +static_data_symbol: + .long 2 + .comm common_symbol,4 |