[gcc r12-3739] [Ada] exp_pakd.adb: work around spurious Codepeer warnings
Pierre-Marie de Rodat
pmderodat@gcc.gnu.org
Tue Sep 21 15:26:49 GMT 2021
https://gcc.gnu.org/g:cf7aa7d8e8523ca246804ba7c8ef6ab4c7910cb8
commit r12-3739-gcf7aa7d8e8523ca246804ba7c8ef6ab4c7910cb8
Author: Ghjuvan Lacambre <lacambre@adacore.com>
Date: Mon Jul 5 17:08:56 2021 +0200
[Ada] exp_pakd.adb: work around spurious Codepeer warnings
gcc/ada/
* exp_pakd.adb (Expand_Packed_Not): Replace expression with
statement.
Diff:
---
gcc/ada/exp_pakd.adb | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gcc/ada/exp_pakd.adb b/gcc/ada/exp_pakd.adb
index 9b118138561..779dbb3ad30 100644
--- a/gcc/ada/exp_pakd.adb
+++ b/gcc/ada/exp_pakd.adb
@@ -2002,7 +2002,11 @@ package body Exp_Pakd is
-- actual subtype of the operand. Preserve old behavior in case size is
-- not set.
- Size := (if Known_RM_Size (PAT) then RM_Size (PAT) else Uint_0);
+ if Known_RM_Size (PAT) then
+ Size := RM_Size (PAT);
+ else
+ Size := Uint_0;
+ end if;
Lit := Make_Integer_Literal (Loc, 2 ** Size - 1);
Set_Print_In_Hex (Lit);
More information about the Gcc-cvs
mailing list