Kaydet (Commit) d459c364 authored tarafından Kohei Yoshida's avatar Kohei Yoshida

Enable vectorization for the "jump" function opcodes.

Change-Id: I24333db598943a0984fb1abb603e90b79d37d845
üst 17774c46
...@@ -1328,10 +1328,15 @@ void ScTokenArray::CheckToken( const FormulaToken& r ) ...@@ -1328,10 +1328,15 @@ void ScTokenArray::CheckToken( const FormulaToken& r )
if (SC_OPCODE_START_FUNCTION <= eOp && eOp < SC_OPCODE_STOP_FUNCTION) if (SC_OPCODE_START_FUNCTION <= eOp && eOp < SC_OPCODE_STOP_FUNCTION)
{ {
// This is a function opcode. For now, we only support vectorization // We support vectorization for the following opcodes.
// for min, max, sum and average.
switch (eOp) switch (eOp)
{ {
case ocIf:
case ocIfError:
case ocIfNA:
case ocChose:
// Jump commands are now supported.
break;
case ocAverage: case ocAverage:
case ocMin: case ocMin:
case ocMinA: case ocMinA:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment