From 0605039974ffa17ab480ed653569c85f93d6a6bc Mon Sep 17 00:00:00 2001 From: Paul Mackerras Date: Fri, 5 Apr 2024 14:32:18 +1100 Subject: [PATCH] fetch1: Fix compiler warning with newer ghdl This fixes the following warning: fetch1.vhdl:293:18:warning: declaration of "eaa_priv" hides signal "eaa_priv" [-Whide] variable eaa_priv : std_ulogic; ^ In fact the signal "eaa_priv" is unused, so remove it. Signed-off-by: Paul Mackerras --- fetch1.vhdl | 3 --- 1 file changed, 3 deletions(-) diff --git a/fetch1.vhdl b/fetch1.vhdl index 677fa27..f0b8360 100644 --- a/fetch1.vhdl +++ b/fetch1.vhdl @@ -102,9 +102,6 @@ architecture behaviour of fetch1 is signal itlb_pte : tlb_pte_t; signal itlb_hit : std_ulogic; - -- Privilege bit from PTE EAA field - signal eaa_priv : std_ulogic; - -- Simple hash for direct-mapped TLB index function hash_ea(addr: std_ulogic_vector(63 downto 0)) return std_ulogic_vector is variable hash : std_ulogic_vector(TLB_BITS - 1 downto 0);