summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFangrui Song <i@maskray.me>2019-07-01 09:42:49 +0000
committerRich Felker <dalias@aerifal.cx>2019-07-02 17:01:39 -0400
commit94751d8ee40a866fa81e392d5c525ea144d2ee20 (patch)
tree5cd62a4e6ab7b4c83c192c0249d90d8c21e661a3
parentf3f96f2daa4d00f0e38489fb465cd0244b531abe (diff)
downloadmusl-94751d8ee40a866fa81e392d5c525ea144d2ee20.tar.gz
remove stray .end directives from powerpc[64] asm
maintainer's note: these are not meaningful/correct/needed and the clang integrated assembler errors out upon seeing them.
-rw-r--r--src/ldso/powerpc/dlsym.s1
-rw-r--r--src/ldso/powerpc64/dlsym.s1
2 files changed, 0 insertions, 2 deletions
diff --git a/src/ldso/powerpc/dlsym.s b/src/ldso/powerpc/dlsym.s
index 357d5771..cfe308ef 100644
--- a/src/ldso/powerpc/dlsym.s
+++ b/src/ldso/powerpc/dlsym.s
@@ -5,5 +5,4 @@
dlsym:
mflr 5 # The return address is arg3.
b __dlsym
- .end dlsym
.size dlsym, .-dlsym
diff --git a/src/ldso/powerpc64/dlsym.s b/src/ldso/powerpc64/dlsym.s
index 7eb691d9..a14715fd 100644
--- a/src/ldso/powerpc64/dlsym.s
+++ b/src/ldso/powerpc64/dlsym.s
@@ -8,5 +8,4 @@ dlsym:
.localentry dlsym,.-dlsym
mflr 5 # The return address is arg3.
b __dlsym
- .end dlsym
.size dlsym, .-dlsym