diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2024-10-02 23:22:44 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-02 23:22:44 +0200 |
| commit | 038e002b1cc38e1e031f5f09388218c39e1b34ab (patch) | |
| tree | 33e9de825d995cae3a549a78b88d348c37633cc7 /lib/std/start.zig | |
| parent | e652318c133a7ec0a2f682fa49af0bc70a455e39 (diff) | |
| parent | 67f5d4f78c9fab17c6975a2381143796f0d38203 (diff) | |
| download | zig-038e002b1cc38e1e031f5f09388218c39e1b34ab.tar.gz zig-038e002b1cc38e1e031f5f09388218c39e1b34ab.zip | |
Merge pull request #21527 from alexrp/elf-emulations
`link.Elf`: Make `getLDMOption()` exhaustive with regards to LLD's `parseEmulation()`.
Diffstat (limited to 'lib/std/start.zig')
| -rw-r--r-- | lib/std/start.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/std/start.zig b/lib/std/start.zig index 796df42c00..63255c17fc 100644 --- a/lib/std/start.zig +++ b/lib/std/start.zig @@ -271,8 +271,8 @@ fn _start() callconv(.Naked) noreturn { \\ b %[posixCallMainAndExit] , .arc => - // The `arc` tag currently means ARCv2, which has an unusually low stack alignment - // requirement. ARCv3 increases it from 4 to 16, but we don't support ARCv3 yet. + // The `arc` tag currently means ARC v1 and v2, which have an unusually low stack + // alignment requirement. ARC v3 increases it from 4 to 16, but we don't support v3 yet. \\ mov fp, 0 \\ mov blink, 0 \\ mov r0, sp |
