Changeset 112285 in webkit for trunk/Source/JavaScriptCore
- Timestamp:
- Mar 27, 2012, 11:06:21 AM (13 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r112192 r112285 1 2012-03-27 Pratik Solanki <[email protected]> 2 3 Compiler warning when JIT is not enabled 4 https://bugs.webkit.org/show_bug.cgi?id=82352 5 6 Reviewed by Filip Pizlo. 7 8 * runtime/JSFunction.cpp: 9 (JSC::JSFunction::create): 10 1 11 2012-03-26 Thouraya ANDOLSI <[email protected]> 2 12 -
trunk/Source/JavaScriptCore/runtime/JSFunction.cpp
r111739 r112285 63 63 { 64 64 NativeExecutable* executable; 65 #if ENABLE(JIT) 65 #if !ENABLE(JIT) 66 UNUSED_PARAM(intrinsic); 67 #else 66 68 if (intrinsic != NoIntrinsic && exec->globalData().canUseJIT()) { 67 69 ASSERT(nativeConstructor == callHostFunctionAsConstructor);
Note:
See TracChangeset
for help on using the changeset viewer.