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.
33 lines
375 B
ArmAsm
33 lines
375 B
ArmAsm
# relaxing conditional jumps -- absolute
|
|
|
|
.globl text1
|
|
.section text1, "ax", @progbits
|
|
beq r2, r3, on_border
|
|
beq r2, r3, out_of_range
|
|
nop
|
|
nop
|
|
|
|
.align 15
|
|
on_border:
|
|
bne r2, r3, in_range
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
nop
|
|
out_of_range:
|
|
in_range:
|
|
nop
|
|
|
|
.globl text2
|
|
.section text2, "ax", @progbits
|
|
|
|
bge r2, r3, text1
|
|
blt r2, r3, out_of_range
|
|
ble r2, r3, sym
|
|
nop
|
|
nop
|
|
sym:
|
|
nop
|
|
|