mailing list of musl libc
 help / color / mirror / code / Atom feed
7d143a96936d1eb4ced4ccebc1da5ec1c55248f8 blob 495 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
 
/*
 * Macros for asm code.
 *
 * Copyright (c) 2019, Arm Limited.
 * SPDX-License-Identifier: MIT
 */

#ifndef _ASMDEFS_H
#define _ASMDEFS_H

#define ENTRY_ALIGN(name, alignment)	\
  .global name;		\
  .type name,%function;	\
  .align alignment;		\
  name:			\
  .cfi_startproc;

#define ENTRY(name)	ENTRY_ALIGN(name, 6)

#define ENTRY_ALIAS(name)	\
  .global name;		\
  .type name,%function;	\
  name:

#define END(name)	\
  .cfi_endproc;		\
  .size name, .-name;

#define L(l) .L ## l

#endif
debug log:

solving 7d143a96 ...
found 7d143a96 in https://inbox.vuxu.org/musl/20200325214544.GT14278@port70.net/

applying [1/1] https://inbox.vuxu.org/musl/20200325214544.GT14278@port70.net/
diff --git a/src/string/aarch64/asmdefs.h b/src/string/aarch64/asmdefs.h
new file mode 100644
index 00000000..7d143a96

Checking patch src/string/aarch64/asmdefs.h...
Applied patch src/string/aarch64/asmdefs.h cleanly.

index at:
100644 7d143a96936d1eb4ced4ccebc1da5ec1c55248f8	src/string/aarch64/asmdefs.h

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).