Re: [PATCH] tools/objtool: Fix unnecessary jumps

2020-08-10 Thread Youling Tang
Thank you for your reply and suggestions, I will remove the "out" label code. Thanks, Youling On 08/10/2020 08:57 PM, Kamalesh Babulal wrote: On 10/08/20 9:36 am, Youling Tang wrote: There is no need to jump to the "out" tag when "ret < 0", just return directly to "ret". Signed-off-by: Youl

Re: [PATCH] tools/objtool: Fix unnecessary jumps

2020-08-10 Thread Kamalesh Babulal
On 10/08/20 9:36 am, Youling Tang wrote: > There is no need to jump to the "out" tag when "ret < 0", just return > directly to "ret". > > Signed-off-by: Youling Tang > --- > tools/objtool/check.c | 16 > 1 file changed, 8 insertions(+), 8 deletions(-) > > diff --git a/tools/obj

[PATCH] tools/objtool: Fix unnecessary jumps

2020-08-09 Thread Youling Tang
There is no need to jump to the "out" tag when "ret < 0", just return directly to "ret". Signed-off-by: Youling Tang --- tools/objtool/check.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tools/objtool/check.c b/tools/objtool/check.c index e034a8f..94b166d