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.
28 lines
403 B
ArmAsm
28 lines
403 B
ArmAsm
# test for call26 relaxation via linker stubs
|
|
|
|
.globl text0
|
|
.section text0, "ax", @progbits
|
|
call func0 # in same section
|
|
call func1 # in nearby section
|
|
call func2a # in distant section
|
|
jmpi func2b # also in distant section
|
|
|
|
func0:
|
|
ret
|
|
|
|
.section text1, "ax", @progbits
|
|
func1:
|
|
nop
|
|
nop
|
|
call func2a # in distant section
|
|
ret
|
|
|
|
.section text2, "ax", @progbits
|
|
func2a:
|
|
nop
|
|
nop
|
|
nop
|
|
ret
|
|
func2b:
|
|
nop
|