[PATCH] ARM: fix -masm-syntax-unified (PR88648)

2019-01-01 Thread Stefan Agner
This allows to use unified asm syntax when compiling for the ARM instruction. This matches documentation and seems what the initial patch was intended doing when the flag got added. --- gcc/config/arm/arm.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gcc/config/arm/arm.c

[PATCH] ARM: add test case for -masm-syntax-unified (PR88648)

2019-01-02 Thread Stefan Agner
Add a test case to check whether -masm-syntax-unified is indeed emitting the inline assembler with .syntax unified. --- .../gcc.target/arm/pr88648-asm-syntax-unified.c| 14 ++ 1 file changed, 14 insertions(+) create mode 100644 gcc/testsuite/gcc.target/arm/pr88648-asm-syntax-unifi

Re: [PATCH] ARM: add test case for -masm-syntax-unified (PR88648)

2019-01-08 Thread Stefan Agner
On 08.01.2019 10:35, Kyrill Tkachov wrote: > Hi Stefan, > > On 02/01/19 21:47, Stefan Agner wrote: >> Add a test case to check whether -masm-syntax-unified is indeed >> emitting the inline assembler with .syntax unified. > > Can you please provide a Chan

[PATCH v2] ARM: add test case for -masm-syntax-unified (PR88648)

2019-01-08 Thread Stefan Agner
Add a test case to check whether -masm-syntax-unified is indeed emitting the inline assembler with .syntax unified. gcc/testsuite/ChangeLog * gcc.target/arm/pr88648-asm-syntax-unified.c: add test to check if -masm-syntax-unified gets applied properly --- .../gcc.target/a

Re: [PATCH] ARM: fix -masm-syntax-unified (PR88648)

2019-02-09 Thread Stefan Agner
Hi Kyrill, On 10.01.2019 12:38, Kyrill Tkachov wrote: > Hi Stefan, > > On 08/01/19 09:33, Kyrill Tkachov wrote: >> Hi Stefan, >> >> On 01/01/19 23:34, Stefan Agner wrote: >> > This allows to use unified asm syntax when compiling for the >> > ARM inst