summaryrefslogtreecommitdiffstats
path: root/JavaScriptCore/bytecode/Opcode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'JavaScriptCore/bytecode/Opcode.cpp')
-rw-r--r--JavaScriptCore/bytecode/Opcode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/JavaScriptCore/bytecode/Opcode.cpp b/JavaScriptCore/bytecode/Opcode.cpp
index bb7696d..8f7f01f 100644
--- a/JavaScriptCore/bytecode/Opcode.cpp
+++ b/JavaScriptCore/bytecode/Opcode.cpp
@@ -101,7 +101,7 @@ OpcodeStats::~OpcodeStats()
for (int j = 0; j < numOpcodeIDs; ++j)
totalInstructionPairs += opcodePairCounts[i][j];
- int sortedIndices[numOpcodeIDs];
+ FixedArray<int, numOpcodeIDs> sortedIndices;
for (int i = 0; i < numOpcodeIDs; ++i)
sortedIndices[i] = i;
qsort(sortedIndices, numOpcodeIDs, sizeof(int), compareOpcodeIndices);