Skip to content

Commit

Permalink
Merge branch 'master' into fix/riscv
Browse files Browse the repository at this point in the history
  • Loading branch information
ViralBShah authored Aug 8, 2024
2 parents a91cde1 + e2482c9 commit c51ea4f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions amd64/e_fmod.S
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,8 @@ ENTRY(fmod)
fstp %st
ret
END(fmod)

/* Enable stack protection */
#if defined(__ELF__)
.section .note.GNU-stack,"",%progbits
#endif
5 changes: 5 additions & 0 deletions amd64/e_fmodf.S
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,8 @@ ENTRY(fmodf)
fstp %st
ret
END(fmodf)

/* Enable stack protection */
#if defined(__ELF__)
.section .note.GNU-stack,"",%progbits
#endif
5 changes: 5 additions & 0 deletions amd64/e_fmodl.S
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,8 @@ ENTRY(fmodl)
fstp %st(1)
ret
END(fmodl)

/* Enable stack protection */
#if defined(__ELF__)
.section .note.GNU-stack,"",%progbits
#endif

0 comments on commit c51ea4f

Please sign in to comment.