Remove using .end directive with clang #20

Merged
kraj merged 1 commits from master into master 2020-04-12 18:21:29 +00:00
1 changed files with 4 additions and 1 deletions

View File

@ -28,10 +28,13 @@
ENT(__proc) \ ENT(__proc) \
__proc: \ __proc: \
SETUP_FRAME(__proc) SETUP_FRAME(__proc)
#ifdef __clang__
#define END(__proc)
#else
#define END(__proc) \ #define END(__proc) \
.end __proc; \ .end __proc; \
.size __proc,.-__proc; .size __proc,.-__proc;
#endif
#define ALIAS(__alias, __real) \ #define ALIAS(__alias, __real) \
.weak __alias; \ .weak __alias; \