diff options
Diffstat (limited to 'compiler/optimizing/nodes.h')
| -rw-r--r-- | compiler/optimizing/nodes.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index 680fb477e2..b712e5edb5 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -3444,8 +3444,8 @@ class HLoadClass : public HExpression<0> {      return generate_clinit_check_;    } -  void SetMustGenerateClinitCheck() { -    generate_clinit_check_ = true; +  void SetMustGenerateClinitCheck(bool generate_clinit_check) { +    generate_clinit_check_ = generate_clinit_check;    }    bool CanCallRuntime() const {  |