Details
Details
Diff Detail
Diff Detail
- Repository
- rG FreeBSD src repository
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
| libexec/rtld-elf/rtld.c | ||
|---|---|---|
| 6571–6572 | I did it for radixes <= 10, but it seems that for 16 it is simper, if not required, to keep existing structure. | |
| 6573–6578 | Yes, it was discussed in D56151/7cfffe25da3fbc2db4bc, where the solution not utilizing non-freestanding features was proposed by dim. I prefer the current way due to that. | |
Comment Actions
Supoort binary numbers specification.
Restructure the valid character check and the digit value calculation.
| libexec/rtld-elf/rtld.c | ||
|---|---|---|
| 6573–6578 | This is an implementation detail, I want rtld do be as much self-contained as possible. The used pattern to avoid overflow is well known. | |