RE: [PATCH] SCCVN: Fix repeating variable name "len"

2023-06-26 Thread Li, Pan2 via Gcc-patches
Committed, thanks Richard. Pan -Original Message- From: Gcc-patches On Behalf Of Richard Biener via Gcc-patches Sent: Monday, June 26, 2023 3:53 PM To: Ju-Zhe Zhong Cc: gcc-patches@gcc.gnu.org; richard.sandif...@arm.com Subject: Re: [PATCH] SCCVN: Fix repeating variable name "len

Re: [PATCH] SCCVN: Fix repeating variable name "len"

2023-06-26 Thread Richard Biener via Gcc-patches
On Mon, 26 Jun 2023, juzhe.zh...@rivai.ai wrote: > From: Ju-Zhe Zhong > > Line 3292: has variable name "len": tree mask = NULL_TREE, len = NULL_TREE, > bias = NULL_TREE; > Line 3349: has variable name "len": HOST_WIDE_INT start = 0, len = 0; > > Since they are never used simultaneously, such i

[PATCH] SCCVN: Fix repeating variable name "len"

2023-06-25 Thread juzhe . zhong
From: Ju-Zhe Zhong Line 3292: has variable name "len": tree mask = NULL_TREE, len = NULL_TREE, bias = NULL_TREE; Line 3349: has variable name "len": HOST_WIDE_INT start = 0, len = 0; Since they are never used simultaneously, such issue is not recognized for now. However, I want to add LEN_MASK_