Files
RedBear-OS/recipes/tools/gnu-binutils/source/ld/testsuite/ld-powerpc/aix-weak-3b.s
T
vasilito ff4ff35918 feat: track all source trees in git — full fork offline-first model
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.
2026-05-14 10:55:53 +01:00

31 lines
338 B
ArmAsm

.globl x1
.csect x1[RW]
x1:
.long 0x0102
.weak x2
.csect x2[RW]
x2:
.long 0x0304
.toc
Tx1:
.tc x1[TC],x1
Tx2:
.tc x2[TC],x2
Tx3:
.tc x3[TC],x3
.globl .main
.csect .main[PR]
.main:
.if size == 32
lwz 1,Tx1(2)
lwz 1,Tx2(2)
lwz 1,Tx3(2)
.else
ld 1,Tx1(2)
ld 1,Tx2(2)
ld 1,Tx3(2)
.endif