diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2011-11-28 18:50:37 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2011-11-28 18:50:37 +0000 |
commit | 31f01161736690ac7797abbdea56cc125090bc5a (patch) | |
tree | 975ea7285aae6906390199b4bf1080e67c9c79b1 /llvm/lib/Support/APFloat.cpp | |
parent | 22b405c7aa4072847764cb989215efb0edfbecef (diff) | |
download | bcm5719-llvm-31f01161736690ac7797abbdea56cc125090bc5a.tar.gz bcm5719-llvm-31f01161736690ac7797abbdea56cc125090bc5a.zip |
Add back a line I deleted by accident in r145141. Fixes uninitialized variable warnings and runtime failures.
llvm-svn: 145256
Diffstat (limited to 'llvm/lib/Support/APFloat.cpp')
-rw-r--r-- | llvm/lib/Support/APFloat.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Support/APFloat.cpp b/llvm/lib/Support/APFloat.cpp index 0ae6f1c39e3..70e7afd6edd 100644 --- a/llvm/lib/Support/APFloat.cpp +++ b/llvm/lib/Support/APFloat.cpp @@ -1917,6 +1917,7 @@ APFloat::convert(const fltSemantics &toSemantics, fs = opOK; } else { *losesInfo = false; + fs = opOK; } return fs; |