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

2019-01-07 Thread Stefan Agner
On 05.01.2019 17:12, Nicolas Pitre wrote: > 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 >>

Re: [PATCH v2 2/3] ARM: uaccess: 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 2/3] ARM: uaccess: 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