From 56575cb45e8313ec6f478fa6068e219f4810e8c3 Mon Sep 17 00:00:00 2001 From: Mason Adams Date: Mon, 17 Apr 2023 14:13:26 -0500 Subject: [PATCH] Removed redundent expression to increase coverage --- src/fpu/postproc/round.sv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fpu/postproc/round.sv b/src/fpu/postproc/round.sv index ee5a44751..c1914bb53 100644 --- a/src/fpu/postproc/round.sv +++ b/src/fpu/postproc/round.sv @@ -111,7 +111,7 @@ module round( // determine what format the final result is in: int or fp - assign IntRes = CvtOp & ToInt; + assign IntRes = ToInt; assign FpRes = ~IntRes; // sticky bit calculation @@ -328,4 +328,4 @@ module round( assign Re = FullRe[`NE-1:0]; -endmodule \ No newline at end of file +endmodule