From: Fangrui Song Date: Mon, 1 Jul 2019 09:42:49 +0000 (+0000) Subject: remove stray .end directives from powerpc[64] asm X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=94751d8ee40a866fa81e392d5c525ea144d2ee20;p=musl 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. --- 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