Source-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: src
Module Name: src
Committed By: uwe
Date: Wed May 7 16:26:47 UTC 2025
Modified Files:
src/lib/libc/arch/arm/sys: cerror.S
src/sys/arch/arm/include: asm.h
src/tests/kernel/arch/arm: contextspfunc.S execsp.S signalsphandler.S
Log Message:
arm: asm.h - change GOT_INIT to take the normal asm label
Don't pass the label to use for the "current address" as the macro
parameter. It obscures its purpose and makes the use of local labels
extremely unobvious, so you are forced to invent a name that is mostly
useless otherwise:
GOT_INIT(r3, .Lgot.execsp_start, .Lpc.execsp_start)
GOT_INITSYM(.Lgot.execsp_start, .Lpc.execsp_start)
vs.
0: GOT_INIT(r3, .Lgot.execsp_start)
GOT_INITSYM(.Lgot.execsp_start, 0b)
Same object code is generated.
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/lib/libc/arch/arm/sys/cerror.S
cvs rdiff -u -r1.38 -r1.39 src/sys/arch/arm/include/asm.h
cvs rdiff -u -r1.1 -r1.2 src/tests/kernel/arch/arm/contextspfunc.S
cvs rdiff -u -r1.3 -r1.4 src/tests/kernel/arch/arm/execsp.S
cvs rdiff -u -r1.2 -r1.3 src/tests/kernel/arch/arm/signalsphandler.S
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Home |
Main Index |
Thread Index |
Old Index