[0/2] aarch64: Fix code formatting in aarch64-tbl.h

Message ID 20250203150655.1843036-1-yury.khrustalev@arm.com
Headers
Series aarch64: Fix code formatting in aarch64-tbl.h |

Message

Yury Khrustalev Feb. 3, 2025, 3:06 p.m. UTC
  Change code formatting in instruction macros to make it uniform across
all instructions:

 - Clean up whitespace for conforming to GNU coding standards.
 - Opcodes and bit-masks are 32-bit numbers and omitting leading zeros
   might be interpreted as if they are 28-bit.

Regression tested on AArch64 and no regression found.

OK for trunk?

base commit: a450dd002fc

---

Yury Khrustalev (2):
  aarch64: Clean up whitespace in aarch64-tbl.h
  aarch64: Add leading zeros to opcodes in aarch64-tbl.h

 opcodes/aarch64-tbl.h | 838 +++++++++++++++++++++---------------------
 1 file changed, 419 insertions(+), 419 deletions(-)
  

Comments

Richard Earnshaw (foss) Feb. 4, 2025, 12:46 p.m. UTC | #1
On 03/02/2025 15:06, Yury Khrustalev wrote:
> Change code formatting in instruction macros to make it uniform across
> all instructions:
> 
>  - Clean up whitespace for conforming to GNU coding standards.
>  - Opcodes and bit-masks are 32-bit numbers and omitting leading zeros
>    might be interpreted as if they are 28-bit.
> 
> Regression tested on AArch64 and no regression found.
> 
> OK for trunk?
> 
> base commit: a450dd002fc
> 
> ---
> 
> Yury Khrustalev (2):
>   aarch64: Clean up whitespace in aarch64-tbl.h
>   aarch64: Add leading zeros to opcodes in aarch64-tbl.h
> 
>  opcodes/aarch64-tbl.h | 838 +++++++++++++++++++++---------------------
>  1 file changed, 419 insertions(+), 419 deletions(-)
> 


OK, thanks.

R.