mirror of
https://github.com/antonblanchard/microwatt.git
synced 2026-02-26 00:33:24 +00:00
fetch1: Fix compiler warning with newer ghdl
This fixes the following warning: fetch1.vhdl:293:18⚠️ 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 <paulus@ozlabs.org>
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user