PowerPC Rename powerxx to power10
[deliverable/binutils-gdb.git] / gas / testsuite / gas / m32r / m32rx.s
index dfb4061e6eb533d69944227913a8afb0b8e8d3c6..e25ec77bc0a4211fb18f243a0292ca86ac24b4bf 100644 (file)
@@ -138,7 +138,8 @@ rach_dsi:
        .global bc__add
 bc__add:
        bc bcl || add fp, fp
-       bc bcl
+# Use bc.s here as bc is relaxable and thus a nop will be emitted.
+       bc.s bcl
        add fp, fp
 
        .text
@@ -146,35 +147,40 @@ bc__add:
 bcl__addi:     
        bcl bcl || addi fp, #77
        addi fp, #77
-       bcl bcl
+# Use bcl.s here as bcl is relaxable and thus the parallelization won't happen.
+       bcl.s bcl
 
        .text
        .global bl__addv
 bl__addv:
        bl bcl || addv fp, fp
        addv fp, fp
-       bl bcl
+# Use bl.s here as bl is relaxable and thus the parallelization won't happen.
+       bl.s bcl
        
        .text
        .global bnc__addx
 bnc__addx:
        bnc bcl || addx fp, fp
-       bnc bcl
+# Use bnc.s here as bnc is relaxable and thus the parallelization attempt won't
+# happen.  Things still won't be parallelized, but we want this test to try.
+       bnc.s bcl
        addx fp, fp
 
        .text
        .global bncl__and
 bncl__and:
        bncl bcl || and fp, fp
-       bncl bcl
        and fp, fp
+       bncl.s bcl
 
        .text
        .global bra__cmp
 bra__cmp:
        bra bcl || cmp fp, fp
        cmp fp, fp
-       bra bcl
+# Use bra.s here as bra is relaxable and thus the parallelization won't happen.
+       bra.s bcl
        
        .text
        .global jl__cmpeq
@@ -542,14 +548,14 @@ mul__sra__reverse_src_clash:
        .text
        .global bc__add_
 bc__add_:
-       bc label
+       bc.s label
        add r1, r2
 
        .text
        .global add__bc
 add__bc:
        add r3, r4
-       bc  label
+       bc.s  label
 
        .text
        .global bc__add__forced_parallel
This page took 0.026808 seconds and 4 git commands to generate.