start: Properly escape percent signs in the s390x inline asm.

Silly mistake in 8ffc41f747.
This commit is contained in:
Alex Rønne Petersen 2024-07-24 17:46:59 +02:00
parent ce81525f3f
commit 1b13d7477d
No known key found for this signature in database

View File

@ -373,12 +373,12 @@ fn _start() callconv(.Naked) noreturn {
,
.s390x =>
// Set up the stack frame (register save area and cleared back-chain slot).
\\ lgr %r2, %r15
\\ lghi %r0, -16
\\ ngr %r15, %r0
\\ aghi %r15, -160
\\ lghi %r0, 0
\\ stg %r0, 0(%r15)
\\ lgr %%r2, %%r15
\\ lghi %%r0, -16
\\ ngr %%r15, %%r0
\\ aghi %%r15, -160
\\ lghi %%r0, 0
\\ stg %%r0, 0(%%r15)
\\ jg %[posixCallMainAndExit]
,
.sparc64 =>