diff options
| author | 2015-11-23 17:45:40 +0000 | |
|---|---|---|
| committer | 2015-11-23 17:45:40 +0000 | |
| commit | 1aa98e41829e7bf378d19d267a5e685999fe33b3 (patch) | |
| tree | 0009e43936a25861848d909140accf26571c8cec /compiler/optimizing/nodes.h | |
| parent | f177c7394abc5ab219cae57820be0125e0f64c1f (diff) | |
| parent | f6dc22c5d7c23774fa77f41fbce49bf3d80c5cc4 (diff) | |
Merge "ARM64: Add support for multiply-accumulate." am: 67e0ad6df9
am: f6dc22c5d7
* commit 'f6dc22c5d7c23774fa77f41fbce49bf3d80c5cc4':
ARM64: Add support for multiply-accumulate.
Diffstat (limited to 'compiler/optimizing/nodes.h')
| -rw-r--r-- | compiler/optimizing/nodes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index e11dfbbad9..1bd626fe2b 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -1101,7 +1101,8 @@ class HLoopInformationOutwardIterator : public ValueObject { #define FOR_EACH_CONCRETE_INSTRUCTION_ARM64(M) #else #define FOR_EACH_CONCRETE_INSTRUCTION_ARM64(M) \ - M(Arm64IntermediateAddress, Instruction) + M(Arm64IntermediateAddress, Instruction) \ + M(Arm64MultiplyAccumulate, Instruction) #endif #define FOR_EACH_CONCRETE_INSTRUCTION_MIPS(M) |