Changeset 67939 in webkit for trunk/JavaScriptCore/bytecode
- Timestamp:
- Sep 21, 2010, 3:55:22 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/bytecode/Opcode.cpp
r62367 r67939 30 30 #include "config.h" 31 31 #include "Opcode.h" 32 33 #if ENABLE(OPCODE_STATS) 34 #include <stdio.h> 35 #include <wtf/FixedArray.h> 36 #endif 32 37 33 38 using namespace std; … … 105 110 for (int i = 0; i < numOpcodeIDs; ++i) 106 111 sortedIndices[i] = i; 107 qsort(sortedIndices , numOpcodeIDs, sizeof(int), compareOpcodeIndices);112 qsort(sortedIndices.data(), numOpcodeIDs, sizeof(int), compareOpcodeIndices); 108 113 109 114 pair<int, int> sortedPairIndices[numOpcodeIDs * numOpcodeIDs];
Note:
See TracChangeset
for help on using the changeset viewer.