diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2015-03-27 15:00:40 +0000 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2015-03-27 15:00:40 +0000 |
commit | a0466e1773ec1db32c4b3d04b0416ffef5005b39 (patch) | |
tree | 83901e77017d4fdd89b00936a76390b2c0c32c05 /compiler/optimizing/nodes.h | |
parent | c4181826dcd2b2e484a5b01871f49680881ad379 (diff) | |
download | art-a0466e1773ec1db32c4b3d04b0416ffef5005b39.zip art-a0466e1773ec1db32c4b3d04b0416ffef5005b39.tar.gz art-a0466e1773ec1db32c4b3d04b0416ffef5005b39.tar.bz2 |
GVN HClinitCheck nodes.
Change-Id: I5c79caadd57d10214a44149fda53e9e185ac7eca
Diffstat (limited to 'compiler/optimizing/nodes.h')
-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); } |