From: Anton Blanchard Date: Tue, 10 Sep 2019 05:31:54 +0000 (+1000) Subject: Quieten multiply warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a22afbdb5b87a841899f56c76a59e39c6a84f0b2;p=microwatt.git 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 --- 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;