| Index: runtime/vm/flags.h
|
| diff --git a/runtime/vm/flags.h b/runtime/vm/flags.h
|
| index 81e69c04d141e7972e38fe1ffe7872f5999dfd2b..81f594eb1f1e6d26fb3564207a10a29576dbe246 100644
|
| --- a/runtime/vm/flags.h
|
| +++ b/runtime/vm/flags.h
|
| @@ -111,8 +111,7 @@ class Flags {
|
| #endif // defined(DEBUG)
|
|
|
| #if defined(PRODUCT) && defined(DART_PRECOMPILED_RUNTIME)
|
| -#define RELEASE_FLAG_MARCO(name, precompiled_value, product_value, type, \
|
| - default_value, comment) \
|
| +#define RELEASE_FLAG_MARCO(name, product_value, type, default_value, comment) \
|
| const type FLAG_##name = product_value;
|
| #define PRECOMPILE_FLAG_MARCO(name, precompiled_value, product_value, type, \
|
| default_value, comment) \
|
| @@ -123,7 +122,7 @@ class Flags {
|
| const type FLAG_##name = product_value;
|
| #define PRECOMPILE_FLAG_MARCO(name, precompiled_value, product_value, type, \
|
| default_value, comment) \
|
| - extern type FLAG_##name;
|
| + const type FLAG_##name = product_value;
|
|
|
| #elif defined(DART_PRECOMPILED_RUNTIME) // !PRODUCT
|
| #define RELEASE_FLAG_MARCO(name, product_value, type, default_value, comment) \
|
|
|