| Index: src/compiler/operator.h
|
| diff --git a/src/compiler/operator.h b/src/compiler/operator.h
|
| index 09a49443ea745c3c748674a8a2e028d51f150b61..75637a8de28a3fd8bac2376d7dd4b758c410dcc9 100644
|
| --- a/src/compiler/operator.h
|
| +++ b/src/compiler/operator.h
|
| @@ -93,7 +93,7 @@ class Operator : public ZoneObject {
|
| int EffectOutputCount() const { return effect_out_; }
|
| int ControlOutputCount() const { return control_out_; }
|
|
|
| - static inline size_t ZeroIfPure(Properties properties) {
|
| + static size_t ZeroIfPure(Properties properties) {
|
| return (properties & kPure) == kPure ? 0 : 1;
|
| }
|
|
|
|
|