Re: [PATCH][AArch64] Fix some scan-assembler tests for -mabi=ilp32

2016-06-29 Thread Richard Earnshaw (lists)
On 29/06/16 11:47, James Greenhalgh wrote: > On Wed, Jun 29, 2016 at 11:40:13AM +0100, Kyrill Tkachov wrote: >> Hi all, >> >> I notice these scan-assembler tests fail when testing -mabi=ilp32 because the >> 64-bit operation that they expect doesn't happen on the 32-bit long types in >> that configu

Re: [PATCH][AArch64] Fix some scan-assembler tests for -mabi=ilp32

2016-06-29 Thread James Greenhalgh
On Wed, Jun 29, 2016 at 11:40:13AM +0100, Kyrill Tkachov wrote: > Hi all, > > I notice these scan-assembler tests fail when testing -mabi=ilp32 because the > 64-bit operation that they expect doesn't happen on the 32-bit long types in > that configuration. > > The easy fix is to change the 'long'

Re: [PATCH][AArch64] Fix some scan-assembler tests for -mabi=ilp32

2016-06-29 Thread Richard Earnshaw (lists)
On 29/06/16 11:40, Kyrill Tkachov wrote: > Hi all, > > I notice these scan-assembler tests fail when testing -mabi=ilp32 > because the 64-bit operation that they > expect doesn't happen on the 32-bit long types in that configuration. > > The easy fix is to change the 'long' types to be 'long long

[PATCH][AArch64] Fix some scan-assembler tests for -mabi=ilp32

2016-06-29 Thread Kyrill Tkachov
Hi all, I notice these scan-assembler tests fail when testing -mabi=ilp32 because the 64-bit operation that they expect doesn't happen on the 32-bit long types in that configuration. The easy fix is to change the 'long' types to be 'long long' so that they are always 64-bit. With this patch th