1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 16:17:47 +00:00

LibELF: Reindent .S files to be consistent with other .S files

Most .S files don't indent directives, so don't indent them here either.
Also, one file had tabs instead of spaces, `:retab` that file.
This commit is contained in:
Nico Weber 2021-08-28 09:37:07 -04:00 committed by Linus Groh
parent 7052f403c8
commit a43ad0e706
4 changed files with 32 additions and 32 deletions

View file

@ -4,10 +4,10 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
.align 4
.globl _invoke_entry
.hidden _invoke_entry
.type _invoke_entry,@function
.align 4
.globl _invoke_entry
.hidden _invoke_entry
.type _invoke_entry,@function
_invoke_entry: # (argc, argv, envp, entry)
// The System V ABI for x86 and x86_64 prescribes that the stack pointer is 16-byte aligned
andq $~15, %rsp