Re: [PATCH] Fix target selector in builtin-apply-2.c

2017-02-07 Thread Jeff Law
On 02/06/2017 07:37 PM, Segher Boessenkool wrote: Revision r245228 introduced a syntax error in a target selector in builtin-apply-2.c: || wants a single expression on each side, you cannot have "{a} || {b} || {c}", instead you need to write this as "{a} || {{b} || {c}}". In this testcase b and

Re: [PATCH] Fix target selector in builtin-apply-2.c

2017-02-07 Thread Mike Stump
On Feb 6, 2017, at 6:37 PM, Segher Boessenkool wrote: > > Revision r245228 introduced a syntax error in a target selector in > builtin-apply-2.c: || wants a single expression on each side, you > cannot have "{a} || {b} || {c}", instead you need to write this as > "{a} || {{b} || {c}}". In this

[PATCH] Fix target selector in builtin-apply-2.c

2017-02-06 Thread Segher Boessenkool
Revision r245228 introduced a syntax error in a target selector in builtin-apply-2.c: || wants a single expression on each side, you cannot have "{a} || {b} || {c}", instead you need to write this as "{a} || {{b} || {c}}". In this testcase b and c are real target selectors (not effect target keywo