Re: [PATCH v2 3/3] ARM: spinlock: use unified assembler language syntax

2019-01-05 Thread Nicolas Pitre
On Thu, 3 Jan 2019, Stefan Agner wrote: > Convert the conditional infix to a postfix to make sure this inline > assembly is unified syntax. Since gcc assumes non-unified syntax > when emitting ARM instructions, make sure to define the syntax as > unified. > > This allows to use LLVM's integrated

[PATCH v2 3/3] ARM: spinlock: use unified assembler language syntax

2019-01-03 Thread Stefan Agner
Convert the conditional infix to a postfix to make sure this inline assembly is unified syntax. Since gcc assumes non-unified syntax when emitting ARM instructions, make sure to define the syntax as unified. This allows to use LLVM's integrated assembler. Signed-off-by: Stefan Agner --- Changes