cleanup
[ieee754fpu.git] / src / add / nmigen_add_experiment.py
index 6e259fd9abb4699c4e5a765043261b8e4280148e..c83f4c3134d411b91047b4dd3e06c0ddbded3f33 100644 (file)
@@ -614,9 +614,7 @@ class FPNorm1Mod:
                              in_z.exp_sub_n126)
                 m.d.comb += [
                     # cat round and guard bits back into the mantissa
-                    temp_m.eq(Cat(in_of.round_bit,
-                                  in_of.guard,
-                                  in_z.m)),
+                    temp_m.eq(Cat(in_of.round_bit, in_of.guard, in_z.m)),
                     pe.i.eq(temp_m[::-1]),          # inverted
                     clz.eq(limclz),                 # count zeros from MSB down
                     temp_s.eq(temp_m << clz),       # shift mantissa UP