1if { ! [istarget nios2-*-*] } {
2    return
3}
4
5foreach test [lsort [glob -nocomplain $srcdir/$subdir/*.d]] {
6    run_dump_test [file rootname $test]
7}
8
9set test_name "NIOS2 Mixed R1 and R2 objects"
10set test mixed1
11
12if ![ld_assemble $as "-march=r1 $srcdir/$subdir/${test}a.s" tmpdir/${test}a.o] {
13    fail "Build mixed1a.o"
14    return
15}
16
17if ![ld_assemble $as "-march=r2 $srcdir/$subdir/${test}b.s" tmpdir/${test}b.o] {
18    fail "Build mixed1b.o"
19    return
20}
21
22if { ![ld_link $ld tmpdir/$test "tmpdir/${test}a.o tmpdir/${test}b.o"] } {
23    if [string match "*architecture * is incompatible*" $link_output] {
24	pass "$test_name"
25    } {
26	fail "$test_name"
27    }
28}
29