From 6098bf50cc90f05ec43955853c083dbdf7f70da2 Mon Sep 17 00:00:00 2001 From: Swapnil Gaikwad Date: Wed, 26 Jun 2024 15:16:46 +0100 Subject: [PATCH] Fix instruction format in comments --- .../Arm/Sve.PlatformNotSupported.cs | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Arm/Sve.PlatformNotSupported.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Arm/Sve.PlatformNotSupported.cs index 6c009e31d1e94..b96417b89bd2c 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Arm/Sve.PlatformNotSupported.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Arm/Sve.PlatformNotSupported.cs @@ -6628,61 +6628,61 @@ internal Arm64() { } /// /// svuint8_t svtbl[_u8](svuint8_t data, svuint8_t indices) - /// TBL Zresult.B, Zdata.B, Zindices.B + /// TBL Zresult.B, {Zdata.B}, Zindices.B /// public static unsafe Vector VectorTableLookup(Vector data, Vector indices) { throw new PlatformNotSupportedException(); } /// /// svfloat64_t svtbl[_f64](svfloat64_t data, svuint64_t indices) - /// TBL Zresult.D, Zdata.D, Zindices.D + /// TBL Zresult.D, {Zdata.D}, Zindices.D /// public static unsafe Vector VectorTableLookup(Vector data, Vector indices) { throw new PlatformNotSupportedException(); } /// /// svint16_t svtbl[_s16](svint16_t data, svuint16_t indices) - /// TBL Zresult.H, Zdata.H, Zindices.H + /// TBL Zresult.H, {Zdata.H}, Zindices.H /// public static unsafe Vector VectorTableLookup(Vector data, Vector indices) { throw new PlatformNotSupportedException(); } /// /// svint32_t svtbl[_s32](svint32_t data, svuint32_t indices) - /// TBL Zresult.S, Zdata.S, Zindices.S + /// TBL Zresult.S, {Zdata.S}, Zindices.S /// public static unsafe Vector VectorTableLookup(Vector data, Vector indices) { throw new PlatformNotSupportedException(); } /// /// svint64_t svtbl[_s64](svint64_t data, svuint64_t indices) - /// TBL Zresult.D, Zdata.D, Zindices.D + /// TBL Zresult.D, {Zdata.D}, Zindices.D /// public static unsafe Vector VectorTableLookup(Vector data, Vector indices) { throw new PlatformNotSupportedException(); } /// /// svint8_t svtbl[_s8](svint8_t data, svuint8_t indices) - /// TBL Zresult.B, Zdata.B, Zindices.B + /// TBL Zresult.B, {Zdata.B}, Zindices.B /// public static unsafe Vector VectorTableLookup(Vector data, Vector indices) { throw new PlatformNotSupportedException(); } /// /// svfloat32_t svtbl[_f32](svfloat32_t data, svuint32_t indices) - /// TBL Zresult.S, Zdata.S, Zindices.S + /// TBL Zresult.S, {Zdata.S}, Zindices.S /// public static unsafe Vector VectorTableLookup(Vector data, Vector indices) { throw new PlatformNotSupportedException(); } /// /// svuint16_t svtbl[_u16](svuint16_t data, svuint16_t indices) - /// TBL Zresult.H, Zdata.H, Zindices.H + /// TBL Zresult.H, {Zdata.H}, Zindices.H /// public static unsafe Vector VectorTableLookup(Vector data, Vector indices) { throw new PlatformNotSupportedException(); } /// /// svuint32_t svtbl[_u32](svuint32_t data, svuint32_t indices) - /// TBL Zresult.S, Zdata.S, Zindices.S + /// TBL Zresult.S, {Zdata.S}, Zindices.S /// public static unsafe Vector VectorTableLookup(Vector data, Vector indices) { throw new PlatformNotSupportedException(); } /// /// svuint64_t svtbl[_u64](svuint64_t data, svuint64_t indices) - /// TBL Zresult.D, Zdata.D, Zindices.D + /// TBL Zresult.D, {Zdata.D}, Zindices.D /// public static unsafe Vector VectorTableLookup(Vector data, Vector indices) { throw new PlatformNotSupportedException(); }