Changeset 27751 in webkit for trunk/JavaScriptCore
- Timestamp:
- Nov 13, 2007, 9:22:36 AM (18 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r27750 r27751 1 2007-11-13 Darin Adler <[email protected]> 2 3 * kjs/JSImmediate.h: (KJS::JSImmediate::getTruncatedInt32): 4 Remove too-strong assert that was firing constantly and preventing even basic 5 web browsing from working in a debug build. This function is used in many 6 cases where the immediate value is not a number; the assertion could perhaps 7 be added back later with a bit of reorganization. 8 1 9 2007-11-13 Alp Toker <[email protected]> 2 10 -
trunk/JavaScriptCore/kjs/JSImmediate.h
r27749 r27751 243 243 ALWAYS_INLINE int32_t JSImmediate::getTruncatedInt32(const JSValue* v) 244 244 { 245 ASSERT(isNumber(v));246 245 return static_cast<int32_t>(unTag(v)) >> 2; 247 246 }
Note:
See TracChangeset
for help on using the changeset viewer.