mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 19:51:34 +08:00
ada: Add Codepeer Exemption + simplify TO_C code.
This patch simplify the TO_C code to have a single branch for raising exception. Furthermore, adding pragma annotate for codepeer to ignore uninitialized value since this is caused because we have input check before the initialization. gcc/ada/ * libgnat/i-c.adb (To_C): Simplify code for having a single exception raise. Add pragma annotate about uninitialized value which happen only on exception raising.
This commit is contained in:
parent
ed34c3bc34
commit
c690f116b6
@ -186,7 +186,7 @@ is
|
||||
(Item : char_array;
|
||||
Trim_Nul : Boolean := True) return String
|
||||
is
|
||||
Count : Natural;
|
||||
Count : Natural := 0;
|
||||
From : size_t;
|
||||
|
||||
begin
|
||||
@ -1177,7 +1177,7 @@ is
|
||||
To : size_t;
|
||||
|
||||
begin
|
||||
if Target'Length < Item'Length then
|
||||
if Target'Length < Item'Length + (if Append_Nul then 1 else 0) then
|
||||
raise Constraint_Error;
|
||||
|
||||
else
|
||||
@ -1210,17 +1210,14 @@ is
|
||||
Target'First + (Item'Length - 1))'Initialized);
|
||||
|
||||
if Append_Nul then
|
||||
if To > Target'Last then
|
||||
raise Constraint_Error;
|
||||
else
|
||||
Target (To) := char32_nul;
|
||||
Count := Item'Length + 1;
|
||||
end if;
|
||||
|
||||
Target (To) := char32_nul;
|
||||
Count := Item'Length + 1;
|
||||
else
|
||||
Count := Item'Length;
|
||||
end if;
|
||||
end if;
|
||||
end To_C;
|
||||
pragma Annotate (CodePeer, False_Positive, "validity check",
|
||||
"Count is only uninitialized on abnormal return.");
|
||||
|
||||
end Interfaces.C;
|
||||
|
Loading…
x
Reference in New Issue
Block a user