From a22afbdb5b87a841899f56c76a59e39c6a84f0b2 Mon Sep 17 00:00:00 2001 From: Anton Blanchard Date: Tue, 10 Sep 2019 15:31:54 +1000 Subject: [PATCH] Quieten multiply warning We no longer gate multiply with the valid signal, so it's complaining a lot. Comment out the warning. Signed-off-by: Anton Blanchard --- multiply.vhdl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multiply.vhdl b/multiply.vhdl index a0d2316..4d9637f 100644 --- a/multiply.vhdl +++ b/multiply.vhdl @@ -78,7 +78,7 @@ begin when OP_MUL_H64 => d2 := d(127 downto 64); when others => - report "Illegal insn type in multiplier"; + --report "Illegal insn type in multiplier"; d2 := (others => '0'); end case;