summaryrefslogtreecommitdiffstats
path: root/compiler
diff options
context:
space:
mode:
authorNicolas Geoffray <ngeoffray@google.com>2015-03-27 15:22:53 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-03-27 15:22:54 +0000
commit7d8c6776d7bdcc04411154aa215ba5909939192a (patch)
tree3ef92b5ecf85285cbcc38ccb8b5457e16a1174c8 /compiler
parentd0056ceab8a78d5cfc0b4e06bce548b2d1cf1fef (diff)
parenta0466e1773ec1db32c4b3d04b0416ffef5005b39 (diff)
downloadart-7d8c6776d7bdcc04411154aa215ba5909939192a.zip
art-7d8c6776d7bdcc04411154aa215ba5909939192a.tar.gz
art-7d8c6776d7bdcc04411154aa215ba5909939192a.tar.bz2
Merge "GVN HClinitCheck nodes."
Diffstat (limited to 'compiler')
-rw-r--r--compiler/optimizing/nodes.h2
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);
}