Add support for the GBZ80, Z180, and eZ80 variants of the Z80 architecure. Add an...
[deliverable/binutils-gdb.git] / gas / testsuite / gas / all / cond.s
index f0bf67ac8cbab2b146560cc3cb0c2edc4322f843..9a7c6e3c1574b877e701fcaa77bd4072abbd97a1 100644 (file)
@@ -30,8 +30,8 @@
        .long   9
        .endif
 
-       .comm   c, 1
-       .ifndef c
+       .comm   v_c, 1
+       .ifndef v_c
        .err
        .endif
 
        .err
        .endif
 
-       .equiv  a, y + 1
-       .equiv  b, z - 1
-       .if     a == x
+       .equiv  v_a, y + 1
+       .equiv  v_b, z - 1
+       .if     v_a == x
        .err
        .endif
-       .if     a - 1 <> x
+       .if     v_a - 1 <> x
        .err
        .endif
-       .if     a <> b + 2
+       .if     v_a <> v_b + 2
        .err
        .endif
-       .if     a - b <> 2
+       .if     v_a - v_b <> 2
        .err
        .endif
 
This page took 0.037593 seconds and 4 git commands to generate.