From 884288166b9bd8202f5ada0c73f2f9c07affff34 Mon Sep 17 00:00:00 2001 From: littledan Date: Tue, 25 Aug 2015 18:12:44 -0700 Subject: [PATCH] --harmony-sloppy-function depends on --harmony-sloppy The lack of marking this dependency led to a ClusterFuzz crash when sloppy-function was on but not sloppy. This case does not make sense. R=adamk LOG=N BUG=chromium:520891 Review URL: https://codereview.chromium.org/1316773004 Cr-Commit-Position: refs/heads/master@{#30364} --- src/flag-definitions.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/flag-definitions.h b/src/flag-definitions.h index 8bedd69..ba049b1 100644 --- a/src/flag-definitions.h +++ b/src/flag-definitions.h @@ -245,6 +245,7 @@ HARMONY_SHIPPING(FLAG_SHIPPING_FEATURES) // Feature dependencies. DEFINE_IMPLICATION(harmony_sloppy_let, harmony_sloppy) +DEFINE_IMPLICATION(harmony_sloppy_function, harmony_sloppy) // Flags for experimental implementation features. -- 2.7.4