MIPS/GAS/testsuite: Remove last remnants of ECOFF support
[deliverable/binutils-gdb.git] / gas / testsuite / gas / mips / beq.s
index 2525026d07bdf70998740d38132d1e3320a732bd..c37106acda9574c54ffd209f0288e7d42a8030ae 100644 (file)
@@ -1,5 +1,5 @@
 # Source file used to test the beq macro.
-       
+       .text
 text_label:    
        beq     $4,$5,text_label
        beq     $4,0,text_label
@@ -12,7 +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
+
+# Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ...
+       .align  2
+       .space  8
This page took 0.037869 seconds and 4 git commands to generate.