mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
Fix a bug in APFloat.cpp: declare APFloat after fltSemantics it
uses. APFloat::convert() takes the pointer to the fltSemantics variable, which is later accessed it in ~APFloat() desctructor. That is, semantics must still be alive at the moment we delete APFloat. Found by experimental AddressSanitizer use-after-scope checker. llvm-svn: 169047
This commit is contained in:
parent
639c448223
commit
21878b5f40
@ -2761,9 +2761,11 @@ APFloat::convertPPCDoubleDoubleAPFloatToAPInt() const
|
||||
// normalize against the "double" minExponent first, and only *then*
|
||||
// truncate the mantissa. The result of that second conversion
|
||||
// may be inexact, but should never underflow.
|
||||
APFloat extended(*this);
|
||||
// Declare fltSemantics before APFloat that uses it (and
|
||||
// saves pointer to it) to ensure correct destruction order.
|
||||
fltSemantics extendedSemantics = *semantics;
|
||||
extendedSemantics.minExponent = IEEEdouble.minExponent;
|
||||
APFloat extended(*this);
|
||||
fs = extended.convert(extendedSemantics, rmNearestTiesToEven, &losesInfo);
|
||||
assert(fs == opOK && !losesInfo);
|
||||
(void)fs;
|
||||
|
Loading…
x
Reference in New Issue
Block a user