riscv: Do not use cfi_label when building with clang

The .cfi_label is a gas extension not supported by clang.  From a
ziglang discussion [1], it seems that it is not really required.

[1] https://github.com/ziglang/zig/issues/3340
This commit is contained in:
Adhemerval Zanella 2023-09-28 14:17:54 -03:00
parent 247526a5a3
commit 6242d11345
4 changed files with 9 additions and 3 deletions

View File

@ -55,6 +55,12 @@
# define cfi_window_save .cfi_window_save
# define cfi_personality(enc, exp) .cfi_personality enc, exp
# define cfi_lsda(enc, exp) .cfi_lsda enc, exp
/* .cfi_label is a gas extension not supported by clang. */
# ifndef __clang__
# define cfi_label(label) .cfi_label label
# else
# define cfi_label(label)
# endif
#else /* ! ASSEMBLER */

View File

@ -45,7 +45,7 @@
ENTRY (ENTRY_POINT)
/* Terminate call stack by noting ra is undefined. Use a dummy
.cfi_label to force starting the FDE. */
.cfi_label .Ldummy
cfi_label (.Ldummy)
cfi_undefined (ra)
call load_gp
mv a5, a0 /* rtld_fini. */

View File

@ -74,7 +74,7 @@ ENTRY (__thread_start)
L (thread_start):
/* Terminate call stack by noting ra is undefined. Use a dummy
.cfi_label to force starting the FDE. */
.cfi_label .Ldummy
cfi_label (.Ldummy)
cfi_undefined (ra)
/* Restore the arg for user's function. */

View File

@ -62,7 +62,7 @@ ENTRY(__thread_start_clone3)
L(thread_start):
/* Terminate call stack by noting ra is undefined. Use a dummy
.cfi_label to force starting the FDE. */
.cfi_label .Ldummy
cfi_label (.Ldummy)
cfi_undefined (ra)
/* Restore the arg for user's function and call the user's