diff options
author | 2015-07-22 16:32:16 +0000 | |
---|---|---|
committer | 2015-07-22 16:32:16 +0000 | |
commit | d77aa00c583cc72f96bc4522d02d2070dcd72f1c (patch) | |
tree | 02e519b7eb31fbb6e8326b3a5a3c852fe5a300e0 /compiler/utils/arm/assembler_thumb2.h | |
parent | ff6e79c97f25692fdaae503e59f4f9e19bbdb4c0 (diff) | |
parent | 663c93448e50599d411b2403585b90513dbf8e3a (diff) |
Merge "ART: Fix Thumb2 literal fixup."
Diffstat (limited to 'compiler/utils/arm/assembler_thumb2.h')
-rw-r--r-- | compiler/utils/arm/assembler_thumb2.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler/utils/arm/assembler_thumb2.h b/compiler/utils/arm/assembler_thumb2.h index 838554ee6d..41eb5d36f2 100644 --- a/compiler/utils/arm/assembler_thumb2.h +++ b/compiler/utils/arm/assembler_thumb2.h @@ -489,6 +489,10 @@ class Thumb2Assembler FINAL : public ArmAssembler { return type_; } + bool IsLoadLiteral() const { + return GetType() >= kLoadLiteralNarrow; + } + Size GetOriginalSize() const { return original_size_; } |