From c65057d871af4ae28ab3741385d166ea76535830 Mon Sep 17 00:00:00 2001 From: Pat Bernardi Date: Thu, 1 Aug 2024 16:01:59 -0400 Subject: [PATCH] miv runtime: remove unused Sys_Tick_Interrupt interrupt name This target does not provide a user facing Sys_Tick_Interrupt, nor does the runtime itself use this symbol. It also causes issues when compiling with checks enabled, as the interrupt range for the target starts at 1 while this named constant is -1. Issue: eng/toolchain/bb-runtimes#50 (cherry picked from commit c22be7614a625dde3c7a82a817ce22698a7a804c) --- riscv/microchip/miv_rv32imaf/a-intnam.ads | 3 --- 1 file changed, 3 deletions(-) diff --git a/riscv/microchip/miv_rv32imaf/a-intnam.ads b/riscv/microchip/miv_rv32imaf/a-intnam.ads index 24dd33d6..33c9e7cc 100644 --- a/riscv/microchip/miv_rv32imaf/a-intnam.ads +++ b/riscv/microchip/miv_rv32imaf/a-intnam.ads @@ -13,9 +13,6 @@ package Ada.Interrupts.Names is -- Interrupts -- ---------------- - -- System tick - Sys_Tick_Interrupt : constant Interrupt_ID := -1; - -- Target Specific Names Timer_0 : constant Interrupt_ID := 8;