| Index: runtime/vm/intrinsifier.cc
|
| diff --git a/runtime/vm/intrinsifier.cc b/runtime/vm/intrinsifier.cc
|
| index 8eb5fabd52e4c6daf5d70446df3f0a0881bc37cd..1f7b2d817dad74993226fc49a7c68956a72b7637 100644
|
| --- a/runtime/vm/intrinsifier.cc
|
| +++ b/runtime/vm/intrinsifier.cc
|
| @@ -3,7 +3,10 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
| // Class for intrinsifying functions.
|
|
|
| +#if !defined(DART_PRECOMPILED_RUNTIME)
|
| +
|
| #include "vm/intrinsifier.h"
|
| +
|
| #include "vm/assembler.h"
|
| #include "vm/compiler.h"
|
| #include "vm/cpu.h"
|
| @@ -1135,3 +1138,5 @@ void Intrinsifier::RegExp_ExecuteMatchSticky(Assembler* assembler) {
|
| #endif // !defined(TARGET_ARCH_DBC)
|
|
|
| } // namespace dart
|
| +
|
| +#endif // !defined(DART_PRECOMPILED_RUNTIME)
|
|
|