diff options
author | Chao-ying Fu <chao-ying.fu@intel.com> | 2015-04-22 10:51:21 -0700 |
---|---|---|
committer | Andreas Gampe <agampe@google.com> | 2015-04-25 16:45:56 -0700 |
commit | c4013ea00d9e63533f3badeed0131bb2eb859c90 (patch) | |
tree | e4f9044f86fbd56c3c848ce56f28bc2f70f985dd /compiler/dex/mir_graph.h | |
parent | 3d58dea2a9d82aed045908fd9ea68c41f3d1f63d (diff) | |
download | android_art-c4013ea00d9e63533f3badeed0131bb2eb859c90.tar.gz android_art-c4013ea00d9e63533f3badeed0131bb2eb859c90.tar.bz2 android_art-c4013ea00d9e63533f3badeed0131bb2eb859c90.zip |
ART: Fix addpd opcode, add Quick x86 assembler test
This patch fixes the addpd opcode that may be used by vectorizations,
and adds an assembler test for the Quick x86 assembler, currently
lightly testing addpd, subpd and mulpd.
Change-Id: I29455a86212829c75fd75737679280f167da7b5b
Signed-off-by: Chao-ying Fu <chao-ying.fu@intel.com>
Diffstat (limited to 'compiler/dex/mir_graph.h')
-rw-r--r-- | compiler/dex/mir_graph.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/dex/mir_graph.h b/compiler/dex/mir_graph.h index 7f9698bbee..7bfbb34ae9 100644 --- a/compiler/dex/mir_graph.h +++ b/compiler/dex/mir_graph.h @@ -1451,6 +1451,7 @@ class MIRGraph { friend class TopologicalSortOrderTest; friend class TypeInferenceTest; friend class QuickCFITest; + friend class QuickAssembleX86TestBase; }; } // namespace art |