Re: [PATCH, AArch64] Handle symbol + offset more effectively

2012-09-27 Thread Marcus Shawcroft
On 25/09/12 14:45, Ian Bolton wrote: Hi all, This patch corrects what seemed to be a typo in expand_mov_immediate in aarch64.c, where we had || instead of an&& in our original code. if (offset != const0_rtx && (targetm.cannot_force_const_mem (mode, imm) || (can_create_pseudo_

[PATCH, AArch64] Handle symbol + offset more effectively

2012-09-25 Thread Ian Bolton
Hi all, This patch corrects what seemed to be a typo in expand_mov_immediate in aarch64.c, where we had || instead of an && in our original code. if (offset != const0_rtx && (targetm.cannot_force_const_mem (mode, imm) || (can_create_pseudo_p ( // <- should have been && A