diff --git a/src/fpu/fcvt.sv b/src/fpu/fcvt.sv index 1ae2f6721..5095a2e02 100644 --- a/src/fpu/fcvt.sv +++ b/src/fpu/fcvt.sv @@ -1,4 +1,3 @@ - /////////////////////////////////////////// // fcvt.sv // @@ -96,7 +95,7 @@ module fcvt import cvw::*; #(parameter cvw_t P) ( // int -> fp : | positive integer | 00000... (if needed) | // fp -> fp : | fraction | 00000... (if needed) | assign LzcInFull = IntToFp ? {TrimInt, {P.CVTLEN-P.XLEN+1{1'b0}}} : - {Xm, {P.CVTLEN-P.NF{1'b0}}}; + {Xm, {P.CVTLEN-P.NF{1'b0}}}; // used as shifter input in postprocessor assign LzcIn = LzcInFull[P.CVTLEN-1:0];