Changeset 180257 in webkit for trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
- Timestamp:
- Feb 17, 2015, 11:04:10 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
r179503 r180257 3731 3731 for (unsigned i = 0; i < jitCode->osrExit.size(); ++i) { 3732 3732 DFG::OSRExit& exit = jitCode->osrExit[i]; 3733 3734 if (!exit.considerAddingAsFrequentExitSite(profiledBlock)) 3735 continue; 3733 exit.considerAddingAsFrequentExitSite(profiledBlock); 3736 3734 } 3737 3735 break; … … 3746 3744 for (unsigned i = 0; i < jitCode->osrExit.size(); ++i) { 3747 3745 FTL::OSRExit& exit = jitCode->osrExit[i]; 3748 3749 if (!exit.considerAddingAsFrequentExitSite(profiledBlock)) 3750 continue; 3746 exit.considerAddingAsFrequentExitSite(profiledBlock); 3751 3747 } 3752 3748 break;
Note:
See TracChangeset
for help on using the changeset viewer.