[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 4/4] target/hexagon/imported/mmvec: Fix superfluous trailing
From: |
Peter Maydell |
Subject: |
Re: [PATCH 4/4] target/hexagon/imported/mmvec: Fix superfluous trailing semicolon |
Date: |
Thu, 4 Jul 2024 10:36:20 +0100 |
On Thu, 4 Jul 2024 at 09:33, Zhao Liu <zhao1.liu@intel.com> wrote:
>
> Fix the superfluous trailing semicolon in target/hexagon/imported/mmvec/
> ext.idef.
>
> Cc: Brian Cain <bcain@quicinc.com>
> Signed-off-by: Zhao Liu <zhao1.liu@intel.com>
> ---
> target/hexagon/imported/mmvec/ext.idef | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/target/hexagon/imported/mmvec/ext.idef
> b/target/hexagon/imported/mmvec/ext.idef
> index 98daabfb07c4..03d31f6181d7 100644
> --- a/target/hexagon/imported/mmvec/ext.idef
> +++ b/target/hexagon/imported/mmvec/ext.idef
> @@ -2855,7 +2855,7 @@ EXTINSN(V6_vscattermhw_add,
> "vscatter(Rt32,Mu2,Vvv32.w).h+=Vw32", ATTRIBS(A_EXT
> fVALIGN(RtV, element_size);
> fVFOREACH(32, i) {
> for(j = 0; j < 2; j++) {
> - EA = RtV + fVALIGN(VvvV.v[j].uw[i],ALIGNMENT);;
> + EA = RtV + fVALIGN(VvvV.v[j].uw[i],ALIGNMENT);
>
> fVLOG_VTCM_HALFWORD_INCREMENT_DV(EA,VvvV.v[j].uw[i],VwV,(2*i+j),i,j,ALIGNMENT,MuV);
> }
> }
> --
> 2.34.1
As a change this is obviously fine, but given the "imported"
in the pathname I don't know if this is something that should
be fixed in whatever upstream source we got this from instead
or as well. Brian ?
thanks
-- PMM