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.
19 lines
390 B
ArmAsm
19 lines
390 B
ArmAsm
.file "ifunc.c"
|
|
.text
|
|
.p2align 4
|
|
|
|
.type resolve_local_foo, %function
|
|
resolve_local_foo:
|
|
.nop
|
|
.size resolve_local_foo, .-resolve_local_foo
|
|
|
|
.globl global_foo
|
|
.type global_foo, %gnu_indirect_function
|
|
.set global_foo,resolve_local_foo
|
|
|
|
.globl resolve_global_foo
|
|
.set resolve_global_foo,resolve_local_foo
|
|
|
|
.type local_foo, %gnu_indirect_function
|
|
.set local_foo,resolve_local_foo
|