diff options
| author | 2015-11-23 17:41:26 +0000 | |
|---|---|---|
| committer | 2015-11-23 17:41:26 +0000 | |
| commit | f6dc22c5d7c23774fa77f41fbce49bf3d80c5cc4 (patch) | |
| tree | 0009e43936a25861848d909140accf26571c8cec /compiler/optimizing/nodes.h | |
| parent | fb601d2eeba807d24296c3ff47305b83bc1ff64a (diff) | |
| parent | 67e0ad6df9db9193fb1fb7115c249a39b1be6033 (diff) | |
Merge "ARM64: Add support for multiply-accumulate."
am: 67e0ad6df9
* commit '67e0ad6df9db9193fb1fb7115c249a39b1be6033':
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) |