diff options
| author | 2017-10-12 20:12:39 +0000 | |
|---|---|---|
| committer | 2017-10-12 20:12:39 +0000 | |
| commit | 6ee6d226f80be742b426620e0f98089417cc1cdd (patch) | |
| tree | d6b2417850fd2ab5fd2a5b121267d8f9cbccb87e /compiler/optimizing/loop_optimization.h | |
| parent | b95f45e67a3e4a14aab63b19f101547658d7514b (diff) | |
| parent | 6e9b137f0439b3ceedb8114bd93fa9fb746e42fa (diff) | |
Merge "ARM: Support SIMD reduction for 32-bit backend."
Diffstat (limited to 'compiler/optimizing/loop_optimization.h')
| -rw-r--r-- | compiler/optimizing/loop_optimization.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/optimizing/loop_optimization.h b/compiler/optimizing/loop_optimization.h index b1b3d110bc..768fe554e3 100644 --- a/compiler/optimizing/loop_optimization.h +++ b/compiler/optimizing/loop_optimization.h @@ -78,6 +78,7 @@ class HLoopOptimization : public HOptimization { kNoStringCharAt = 1 << 9, // no StringCharAt kNoReduction = 1 << 10, // no reduction kNoSAD = 1 << 11, // no sum of absolute differences (SAD) + kNoWideSAD = 1 << 12, // no sum of absolute differences (SAD) with operand widening }; /* |