diff options
author | Nick Clifton <nickc@redhat.com> | 1999-02-08 17:29:05 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 1999-02-08 17:29:05 +0000 |
commit | 9db7f240c3c3b3d760929676c93f5af891a320a4 (patch) | |
tree | 452c4b7b772f19b32d67d438713357ea57e911d8 | |
parent | 5510d6a1c7f2da7dff3876369aafd92f68727020 (diff) | |
download | gdb-9db7f240c3c3b3d760929676c93f5af891a320a4.zip gdb-9db7f240c3c3b3d760929676c93f5af891a320a4.tar.gz gdb-9db7f240c3c3b3d760929676c93f5af891a320a4.tar.bz2 |
Fix tests to pass on ARM targets
-rw-r--r-- | gas/testsuite/ChangeLog | 8 | ||||
-rw-r--r-- | gas/testsuite/gas/vtable/entry1.d | 2 | ||||
-rw-r--r-- | gas/testsuite/gas/vtable/inherit0.s | 4 |
3 files changed, 11 insertions, 3 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 6450b61..0e182ce 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,11 @@ +1999-02-08 Nick Clifton <nickc@cygnus.com> + + * gas/vtable/inherit0.s: Do not use '@' prefix to .type operator. + Some ports use it as a comment initiator. + + * gas/vtable/entry1.d: Do not look for an addend. Some ports use + REL relocations and so do not have one. + start-sanitize-cygnus Fri Feb 5 19:53:52 1999 Doug Evans <devans@canuck.cygnus.com> diff --git a/gas/testsuite/gas/vtable/entry1.d b/gas/testsuite/gas/vtable/entry1.d index a9d7bd5..7fa6e4b 100644 --- a/gas/testsuite/gas/vtable/entry1.d +++ b/gas/testsuite/gas/vtable/entry1.d @@ -5,6 +5,6 @@ RELOCATION RECORDS FOR \[.text\]: OFFSET +TYPE +VALUE -0+0000000 R_.*_GNU_VTENTRY vtbl_a\+0x0+10 +0+0000000 R_.*_GNU_VTENTRY vtbl_a.* diff --git a/gas/testsuite/gas/vtable/inherit0.s b/gas/testsuite/gas/vtable/inherit0.s index 37f1b95..d438df6 100644 --- a/gas/testsuite/gas/vtable/inherit0.s +++ b/gas/testsuite/gas/vtable/inherit0.s @@ -1,12 +1,12 @@ .data -.type vtbl_a,@object +.type vtbl_a,object vtbl_a: .space 16 .size vtbl_a,16 .vtable_inherit vtbl_a, 0 -.type vtbl_b,@object +.type vtbl_b,object vtbl_b: .space 16 .size vtbl_b,16 |