diff options
author | 2016-01-12 16:03:16 +0000 | |
---|---|---|
committer | 2016-01-12 16:05:38 +0000 | |
commit | a3eca2d7300f35c66cf4b696d788a8b7ba74eb99 (patch) | |
tree | 18ea775d51bfc71d90407bd801e8b56fb5309868 /compiler/optimizing/nodes.h | |
parent | 3da15f8b1097905e06a59149c3a4a9658cbb7d5e (diff) |
Do not leave intermediate addresses across Java calls.
bug:26472446
Change-Id: Ie4a9b5fe6f1d61a76c71eceaa2299fe55512c612
Diffstat (limited to 'compiler/optimizing/nodes.h')
-rw-r--r-- | compiler/optimizing/nodes.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index c06d164523..9a7dfd8abf 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -1868,6 +1868,10 @@ class HInstruction : public ArenaObject<kArenaAllocInstruction> { return false; } + virtual bool IsActualObject() const { + return GetType() == Primitive::kPrimNot; + } + void SetReferenceTypeInfo(ReferenceTypeInfo rti); ReferenceTypeInfo GetReferenceTypeInfo() const { |