diff options
author | 2014-03-13 09:24:22 +0000 | |
---|---|---|
committer | 2014-03-13 09:24:22 +0000 | |
commit | af7ec0e4efd43aaa58094d036c85736059d9f18d (patch) | |
tree | a9ad45cd9979880f7eec3952590c114c55a37f65 /compiler/optimizing/optimizing_unit_test.h | |
parent | 9dd077cc71c12576a52c51ae19fe15306ce12eaa (diff) | |
parent | bab4ed7057799a4fadc6283108ab56f389d117d4 (diff) |
Merge "More code generation for the optimizing compiler."
Diffstat (limited to 'compiler/optimizing/optimizing_unit_test.h')
-rw-r--r-- | compiler/optimizing/optimizing_unit_test.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/optimizing/optimizing_unit_test.h b/compiler/optimizing/optimizing_unit_test.h index bf13a41397..67c4850ca5 100644 --- a/compiler/optimizing/optimizing_unit_test.h +++ b/compiler/optimizing/optimizing_unit_test.h @@ -26,4 +26,7 @@ #define ONE_REGISTER_CODE_ITEM(...) \ { 1, 0, 0, 0, 0, 0, NUM_INSTRUCTIONS(__VA_ARGS__), 0, __VA_ARGS__ } +#define TWO_REGISTERS_CODE_ITEM(...) \ + { 2, 0, 0, 0, 0, 0, NUM_INSTRUCTIONS(__VA_ARGS__), 0, __VA_ARGS__ } + #endif // ART_COMPILER_OPTIMIZING_OPTIMIZING_UNIT_TEST_H_ |