Re: [PATCH] objtool/x86: Replace Non-standard Range Expression in Case

2018-02-17 Thread Progyan Bhattacharya
On Fri, 2018-02-16 at 17:47 +0100, Peter Zijlstra wrote: > On Fri, Feb 16, 2018 at 08:35:11AM -0600, Josh Poimboeuf wrote: > > On Fri, Feb 16, 2018 at 07:55:13PM +0530, Progyan Bhattacharya > > wrote: > > > Replace range expressions with seperate individual cases, i.e. > > > convert case 1...3: to

Re: [PATCH] objtool/x86: Replace Non-standard Range Expression in Case

2018-02-16 Thread Peter Zijlstra
On Fri, Feb 16, 2018 at 08:35:11AM -0600, Josh Poimboeuf wrote: > On Fri, Feb 16, 2018 at 07:55:13PM +0530, Progyan Bhattacharya wrote: > > Replace range expressions with seperate individual cases, i.e. convert case > > 1...3: to case 1: case 2: case 3 > > Range expression within case statements a

Re: [PATCH] objtool/x86: Replace Non-standard Range Expression in Case

2018-02-16 Thread Josh Poimboeuf
On Fri, Feb 16, 2018 at 08:09:24PM +0530, Progyan Bhattacharya wrote: > Replace range expressions with seperate individual cases, i.e. convert case > 1...3: to case 1: case 2: case 3 > Range expression within case statements are non-standard C code and can > create issues over compiler and platfo

[PATCH] objtool/x86: Replace Non-standard Range Expression in Case

2018-02-16 Thread Progyan Bhattacharya
Replace range expressions with seperate individual cases, i.e. convert case 1...3: to case 1: case 2: case 3 Range expression within case statements are non-standard C code and can create issues over compiler and platform variety. While compiling with gcc 4.8 (RHEL) I encountered this error on r

Re: [PATCH] objtool/x86: Replace Non-standard Range Expression in Case

2018-02-16 Thread Josh Poimboeuf
On Fri, Feb 16, 2018 at 07:55:13PM +0530, Progyan Bhattacharya wrote: > Replace range expressions with seperate individual cases, i.e. convert case > 1...3: to case 1: case 2: case 3 > Range expression within case statements are non-standard C code and can > create issues over compiler and platfo

[PATCH] objtool/x86: Replace Non-standard Range Expression in Case

2018-02-16 Thread Progyan Bhattacharya
Replace range expressions with seperate individual cases, i.e. convert case 1...3: to case 1: case 2: case 3 Range expression within case statements are non-standard C code and can create issues over compiler and platform variety. While compiling with gcc 4.8 (RHEL) I encountered this error on r

[PATCH] objtool/x86: Replace Non-standard Range Expression in Case

2018-02-16 Thread Progyan Bhattacharya
Replace range expressions with seperate individual cases, i.e. convert case 1...3: to case 1: case 2: case 3 Range expression within case statements are non-standard C code and can create issues over compiler and platform variety. While compiling with gcc 4.8 (RHEL) I encountered this error on r