mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
libsa: Remove conflicting .global/.weak directive
LLVM12 complains if you change the symbol binding: `error: _longjmp changed binding to STB_GLOBAL` In this case LLVM actually ignored the weak directive and used the later .global, but GNU as would mark the symbol as weak. None of the other architectures mark the libsa _setjmp as weak so just drop this directive.
This commit is contained in:
parent
88024c4a52
commit
59b2caef05
1 changed files with 0 additions and 1 deletions
|
|
@ -63,7 +63,6 @@ ENTRY(_setjmp)
|
|||
ret
|
||||
END(_setjmp)
|
||||
|
||||
.weak CNAME(_longjmp)
|
||||
ENTRY(_longjmp)
|
||||
movq %rdi,%rdx
|
||||
/* Restore the mxcsr, but leave exception flags intact. */
|
||||
|
|
|
|||
Loading…
Reference in a new issue