| Index: runtime/platform/globals.h | 
| diff --git a/runtime/platform/globals.h b/runtime/platform/globals.h | 
| index 3a3ed26d56d80c92ca1ab09421aa30f1fcfe1ecc..114c47d1585165fa55540a5d361c3c2fe38e45e5 100644 | 
| --- a/runtime/platform/globals.h | 
| +++ b/runtime/platform/globals.h | 
| @@ -138,11 +138,16 @@ | 
| #endif  // defined(DEBUG) | 
| #endif  // defined(PRODUCT) | 
|  | 
| - | 
| #if defined(DART_PRECOMPILED_RUNTIME) && defined(DART_PRECOMPILER) | 
| #error DART_PRECOMPILED_RUNTIME and DART_PRECOMPILER are mutually exclusive | 
| #endif  // defined(DART_PRECOMPILED_RUNTIME) && defined(DART_PRECOMPILER) | 
|  | 
| +#if defined(DART_PRECOMPILED_RUNTIME) | 
| +#define NOT_IN_PRECOMPILED(code) | 
| +#else | 
| +#define NOT_IN_PRECOMPILED(code) code | 
| +#endif  // defined(DART_PRECOMPILED_RUNTIME) | 
| + | 
| namespace dart { | 
|  | 
| struct simd128_value_t { | 
|  |