Add back a line I deleted by accident in r145141.  Fixes uninitialized variable warnings and runtime failures.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145256 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Support/APFloat.cpp b/lib/Support/APFloat.cpp
index 0ae6f1c..70e7afd 100644
--- a/lib/Support/APFloat.cpp
+++ b/lib/Support/APFloat.cpp
@@ -1917,6 +1917,7 @@
     fs = opOK;
   } else {
     *losesInfo = false;
+    fs = opOK;
   }
 
   return fs;