aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada
diff options
context:
space:
mode:
authorGhjuvan Lacambre <lacambre@adacore.com>2022-11-16 15:53:17 +0100
committerMarc Poulhiès <poulhies@adacore.com>2022-11-21 11:10:33 +0100
commit7dcf757a5192d399295736b57d63a73136523bcb (patch)
tree13b383c24266e5ec04ffc415f646306ac8a3f18b /gcc/ada
parentbc50ac7108485dd3724f36476ebc439f5beb1e83 (diff)
downloadgcc-7dcf757a5192d399295736b57d63a73136523bcb.zip
gcc-7dcf757a5192d399295736b57d63a73136523bcb.tar.gz
gcc-7dcf757a5192d399295736b57d63a73136523bcb.tar.bz2
ada: Disable subprogram call validation in CodePeer mode
CodePeer builds with assertions enabled started failing when this validation was introduced. We temporarily disable this validation for CodePeer in order to buy time before fixing the underlying issue. gcc/ada/ * frontend.adb (Frontend): Disable subprogram call validation.
Diffstat (limited to 'gcc/ada')
-rw-r--r--gcc/ada/frontend.adb2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/frontend.adb b/gcc/ada/frontend.adb
index 033ecf3b..bc3da30 100644
--- a/gcc/ada/frontend.adb
+++ b/gcc/ada/frontend.adb
@@ -531,7 +531,7 @@ begin
-- formals). It is invoked using pragma Debug to avoid adding any cost
-- when the compiler is built with assertions disabled.
- if not Debug_Flag_Underscore_XX then
+ if not Debug_Flag_Underscore_XX and then not CodePeer_Mode then
pragma Debug (Exp_Ch6.Validate_Subprogram_Calls (Cunit (Main_Unit)));
end if;