ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
22 lines
305 B
ArmAsm
22 lines
305 B
ArmAsm
# Test that jal gets converted to bal on the RM9000 when it is in range.
|
|
.text
|
|
.global s1
|
|
.type s1,@function
|
|
.set noreorder
|
|
s1:
|
|
jal s3
|
|
nop
|
|
jal s3
|
|
s2:
|
|
nop
|
|
.space 0x1fff8
|
|
s3:
|
|
jal s2
|
|
nop
|
|
jal s2
|
|
nop
|
|
|
|
# Force at least 8 (non-delay-slot) zero bytes, to make 'objdump' print ...
|
|
.align 2
|
|
.space 8
|