diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2015-03-27 15:22:53 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-03-27 15:22:54 +0000 |
commit | 7d8c6776d7bdcc04411154aa215ba5909939192a (patch) | |
tree | 3ef92b5ecf85285cbcc38ccb8b5457e16a1174c8 /compiler | |
parent | d0056ceab8a78d5cfc0b4e06bce548b2d1cf1fef (diff) | |
parent | a0466e1773ec1db32c4b3d04b0416ffef5005b39 (diff) | |
download | art-7d8c6776d7bdcc04411154aa215ba5909939192a.zip art-7d8c6776d7bdcc04411154aa215ba5909939192a.tar.gz art-7d8c6776d7bdcc04411154aa215ba5909939192a.tar.bz2 |
Merge "GVN HClinitCheck nodes."
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/optimizing/nodes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index c4e2798..21ed350 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -3115,7 +3115,7 @@ class HLoadString : public HExpression<0> { class HClinitCheck : public HExpression<1> { public: explicit HClinitCheck(HLoadClass* constant, uint32_t dex_pc) - : HExpression(Primitive::kPrimNot, SideEffects::All()), + : HExpression(Primitive::kPrimNot, SideEffects::ChangesSomething()), dex_pc_(dex_pc) { SetRawInputAt(0, constant); } |