Add support for MIPS R6.
[deliverable/binutils-gdb.git] / gas / testsuite / gas / mips / beq.s
index 9922eecb2790caaa7254462bab05fb9eb4cfd9e8..bed691654747cdb82ba8dd1bc675f46539cb3c3e 100644 (file)
@@ -1,5 +1,5 @@
 # Source file used to test the beq macro.
-       .globl  text_label      .text
+       .text
 text_label:    
        beq     $4,$5,text_label
        beq     $4,0,text_label
@@ -12,17 +12,17 @@ text_label:
 # bne is handled by the same code as beq.  Just sanity check.
        bne     $4,0,text_label
 
-# Sanity check beql and bnel
-       .set    mips2
-       beql    $4,0,text_label
-       bnel    $4,0,text_label
-
+       .ifndef r6
 # Test that branches which overflow are converted to jumps.
        .space  0x20000
        b       text_label
        bal     text_label
+       .endif
+
+# Branch to an external label.
+#      b       external_label
+#      bal     external_label
 
-# Round to a 16 byte boundary, for ease in testing multiple targets.
-       nop
-       nop
-       nop
+# Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ...
+       .align  2
+       .space  8
This page took 0.026465 seconds and 4 git commands to generate.