Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

[x86/Linux] Port PATCH_LABEL macro #8483

Merged
merged 1 commit into from
Dec 7, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/pal/inc/unixasmmacrosx86.inc
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ C_FUNC(\Name):
.cfi_startproc
.endm

.macro PATCH_LABEL Name
.global C_FUNC(\Name)
C_FUNC(\Name):
.endm

.macro LEAF_END Name, Section
.size \Name, .-\Name
.cfi_endproc
Expand Down