* gas/z80/equ.d, gas/z80/equ.s: Added test of parsing equ directives.
authorArnold Metselaar <arnold.metselaar@planet.nl>
Sun, 25 Oct 2009 16:18:04 +0000 (16:18 +0000)
committerArnold Metselaar <arnold.metselaar@planet.nl>
Sun, 25 Oct 2009 16:18:04 +0000 (16:18 +0000)
* gas/z80/z80.exp: Run it.

* gas/z80/redef.d: Expect little endian output only.

gas/testsuite/ChangeLog
gas/testsuite/gas/z80/equ.d [new file with mode: 0644]
gas/testsuite/gas/z80/equ.s [new file with mode: 0644]
gas/testsuite/gas/z80/redef.d
gas/testsuite/gas/z80/z80.exp

index b363b7a57beac32dbbeb7f617c4a4ff09c221f22..e0008a2f16907c52f1aae2da717e1913a8977521 100644 (file)
@@ -1,3 +1,10 @@
+2009-10-25  Arnold Metselaar  <arnold.metselaar@planet.nl>
+
+       * gas/z80/equ.d, gas/z80/equ.s: Added test of parsing equ directives.
+       * gas/z80/z80.exp: Run it.
+
+       * gas/z80/redef.d: Expect little endian output only.    
+
 2009-10-20  H.J. Lu  <hongjiu.lu@intel.com>
 
        PR gas/10775
diff --git a/gas/testsuite/gas/z80/equ.d b/gas/testsuite/gas/z80/equ.d
new file mode 100644 (file)
index 0000000..cba8db5
--- /dev/null
@@ -0,0 +1,8 @@
+#objdump: -s -j .data
+#name: .equ definitions
+
+.*: .*
+
+Contents of section .data:
+ 0000 0c000000 08000000 04000000 00000000[     ]+................[     ]*
+#pass
diff --git a/gas/testsuite/gas/z80/equ.s b/gas/testsuite/gas/z80/equ.s
new file mode 100644 (file)
index 0000000..11e828b
--- /dev/null
@@ -0,0 +1,10 @@
+ .data
+_start:
+lab0:  .equ .-_start
+ .long lab3
+lab1:  equ -(_start - .)
+ .long lab2
+lab2   .equ (.-_start)
+ .long lab1
+lab3   equ ~~(.-_start)
+ .long lab0
index fed19987c3e26475f91bd193fdc96af5d7540af2..aa982a4b4e4a8ef766f1828ca28a0bda8ddbd27f 100644 (file)
@@ -4,5 +4,5 @@
 .*: .*
 
 Contents of section .data:
- 0000 00000000 0[04]00000[04] 0[08]00000[08] 0[0c]00000[0c][   ]+................[     ]*
+ 0000 00000000 04000000 08000000 0c000000[     ]+................[     ]*
 #pass
index d595f6a63cbd5e99717fbcaa46f07ec8c27a8457..0cb844031ae3c04f3b82ff4221e278772ba6188e 100644 (file)
@@ -3,6 +3,8 @@
 if [istarget z80-*-*] then {
 # test redefinitions
     run_dump_test "redef"
+# test parsing of equ definitions
+    run_dump_test "equ"
 # test parsing of " and '
     run_dump_test "quotes"
 # test suffixes
This page took 0.031071 seconds and 4 git commands to generate.