soft-fp64/fadd: Reformat after previous commit
authorIan Romanick <ian.d.romanick@intel.com>
Wed, 4 Mar 2020 20:09:58 +0000 (12:09 -0800)
committerMarge Bot <eric+marge@anholt.net>
Wed, 18 Mar 2020 20:36:29 +0000 (20:36 +0000)
commit480565812c1472faf440b3a27864c8c34610a0f5
treeb3111ab4d1c889b407606a41a7cb520b312f71f5
parent9496a67eece5717417b3b44ad1552c57b70b2897
soft-fp64/fadd: Reformat after previous commit

Convert

   } else if (...) {
      ...
   } else {
      ...
   }

to

   } else {
      if (...) {
         ...
      } else {
         ...
      }
   }

Not doing this reformatting in the previous commit makes the previous
commit easier to review, and doing it before the next commit makes the
next commit easier to review.

Reviewed-by: Matt Turner <mattst88@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4142>
src/compiler/glsl/float64.glsl