Re: [RFC PATCH 8/8] powerpc/64/asm: don't reassign labels

2021-03-18 Thread Nicholas Piggin
Excerpts from Daniel Axtens's message of February 26, 2021 10:28 am: > Segher Boessenkool writes: > >> On Thu, Feb 25, 2021 at 02:10:06PM +1100, Daniel Axtens wrote: >>> The assembler really does not like us reassigning things to the same >>> label: >>> >>> :7:9: error: invalid reassignment of n

Re: [RFC PATCH 8/8] powerpc/64/asm: don't reassign labels

2021-02-25 Thread Daniel Axtens
Segher Boessenkool writes: > On Thu, Feb 25, 2021 at 02:10:06PM +1100, Daniel Axtens wrote: >> The assembler really does not like us reassigning things to the same >> label: >> >> :7:9: error: invalid reassignment of non-absolute variable >> 'fs_label' >> >> This happens across a bunch of plat

Re: [RFC PATCH 8/8] powerpc/64/asm: don't reassign labels

2021-02-25 Thread Segher Boessenkool
On Thu, Feb 25, 2021 at 02:10:06PM +1100, Daniel Axtens wrote: > The assembler really does not like us reassigning things to the same > label: > > :7:9: error: invalid reassignment of non-absolute variable > 'fs_label' > > This happens across a bunch of platforms: > https://github.com/ClangBuilt

[RFC PATCH 8/8] powerpc/64/asm: don't reassign labels

2021-02-24 Thread Daniel Axtens
The assembler really does not like us reassigning things to the same label: :7:9: error: invalid reassignment of non-absolute variable 'fs_label' This happens across a bunch of platforms: https://github.com/ClangBuiltLinux/linux/issues/1043 https://github.com/ClangBuiltLinux/linux/issues/1008 ht