diff options
author | Fangrui Song <i@maskray.me> | 2019-07-01 09:42:49 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2019-07-02 17:01:39 -0400 |
commit | 94751d8ee40a866fa81e392d5c525ea144d2ee20 (patch) | |
tree | 5cd62a4e6ab7b4c83c192c0249d90d8c21e661a3 /src/ldso | |
parent | f3f96f2daa4d00f0e38489fb465cd0244b531abe (diff) | |
download | musl-94751d8ee40a866fa81e392d5c525ea144d2ee20.zip musl-94751d8ee40a866fa81e392d5c525ea144d2ee20.tar.gz musl-94751d8ee40a866fa81e392d5c525ea144d2ee20.tar.bz2 |
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.
Diffstat (limited to 'src/ldso')
-rw-r--r-- | src/ldso/powerpc/dlsym.s | 1 | ||||
-rw-r--r-- | src/ldso/powerpc64/dlsym.s | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/ldso/powerpc/dlsym.s b/src/ldso/powerpc/dlsym.s index 357d577..cfe308e 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 7eb691d..a14715f 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 |