]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
aarch64: Fix warning in aarch64_ptrue_reg
authorAndrew Pinski <quic_apinski@quicinc.com>
Wed, 23 Oct 2024 23:39:21 +0000 (16:39 -0700)
committerAndrew Pinski <quic_apinski@quicinc.com>
Wed, 23 Oct 2024 23:45:14 +0000 (16:45 -0700)
After r15-4579-g9ffcf1f193b477, we get the following warning/error while bootstrapping on aarch64:
```
../../gcc/gcc/config/aarch64/aarch64.cc: In function ‘rtx_def* aarch64_ptrue_reg(machine_mode, unsigned int)’:
../../gcc/gcc/config/aarch64/aarch64.cc:3643:21: error: comparison of integer expressions of different signedness: ‘int’ and ‘unsigned int’ [-Werror=sign-compare]
 3643 |   for (int i = 0; i < vl; i++)
      |                   ~~^~~~
```

This changes the type of i to unsigned to match the type of vl.

Pushed as obvious after a bootstrap/test on aarch64-linux-gnu.

gcc/ChangeLog:

* config/aarch64/aarch64.cc (aarch64_ptrue_reg): Fix type
of induction variable i.

Signed-off-by: Andrew Pinski <quic_apinski@quicinc.com>
gcc/config/aarch64/aarch64.cc

index e6d957d275d152fb7c1231220c788c3c9bac63d4..7fbe3a7380c771fa6476222805090ef3271f1527 100644 (file)
@@ -3640,10 +3640,10 @@ aarch64_ptrue_reg (machine_mode mode, unsigned int vl)
 
   rtx_vector_builder builder (VNx16BImode, vl, 2);
 
-  for (int i = 0; i < vl; i++)
+  for (unsigned i = 0; i < vl; i++)
     builder.quick_push (CONST1_RTX (BImode));
 
-  for (int i = 0; i < vl; i++)
+  for (unsigned i = 0; i < vl; i++)
     builder.quick_push (CONST0_RTX (BImode));
 
   rtx const_vec = builder.build ();