diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2014-04-07 15:26:35 +0100 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2014-04-08 08:43:50 +0100 |
commit | b55f835d66a61e5da6fc1895ba5a0482868c9552 (patch) | |
tree | 44659a826aeadcf2bf176c2e8d31108ba64c88eb /compiler/utils/x86/assembler_x86.h | |
parent | 427ca38b0a6c6fd7dc0dbb380619e2b91b56cf1c (diff) | |
download | android_art-b55f835d66a61e5da6fc1895ba5a0482868c9552.tar.gz android_art-b55f835d66a61e5da6fc1895ba5a0482868c9552.tar.bz2 android_art-b55f835d66a61e5da6fc1895ba5a0482868c9552.zip |
Test control flow instruction with optimizing compiler.
Add support for basic instructions to implement these tests.
Change-Id: I3870bf9301599043b3511522bb49dc6364c9b4c0
Diffstat (limited to 'compiler/utils/x86/assembler_x86.h')
-rw-r--r-- | compiler/utils/x86/assembler_x86.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/utils/x86/assembler_x86.h b/compiler/utils/x86/assembler_x86.h index f8fc4c0e70..057c80af91 100644 --- a/compiler/utils/x86/assembler_x86.h +++ b/compiler/utils/x86/assembler_x86.h @@ -354,6 +354,7 @@ class X86Assembler FINAL : public Assembler { void orl(Register dst, Register src); void xorl(Register dst, Register src); + void xorl(Register dst, const Immediate& imm); void addl(Register dst, Register src); void addl(Register reg, const Immediate& imm); |