Changeset 240681 in webkit for trunk/Source/JavaScriptCore/bytecode/ValueRecovery.cpp
- Timestamp:
- Jan 29, 2019, 2:04:47 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/ValueRecovery.cpp
r189192 r240681 1 1 /* 2 * Copyright (C) 2011 , 2013, 2015Apple Inc. All rights reserved.2 * Copyright (C) 2011-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 44 44 return jsNumber(exec->r(virtualRegister().offset()).unboxedStrictInt52()); 45 45 case DoubleDisplacedInJSStack: 46 return jsNumber( exec->r(virtualRegister().offset()).unboxedDouble());46 return jsNumber(purifyNaN(exec->r(virtualRegister().offset()).unboxedDouble())); 47 47 case CellDisplacedInJSStack: 48 48 return exec->r(virtualRegister().offset()).unboxedCell();
Note:
See TracChangeset
for help on using the changeset viewer.