| Index: runtime/vm/intrinsifier.cc
|
| diff --git a/runtime/vm/intrinsifier.cc b/runtime/vm/intrinsifier.cc
|
| index 2c09f7075d340ec774f522a7af2ced06321a6b17..c9943132e581958c1e0d2f35fbfde5f8813b9ef8 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"
|
| @@ -1138,3 +1141,5 @@ void Intrinsifier::RegExp_ExecuteMatchSticky(Assembler* assembler) {
|
| #endif // !defined(TARGET_ARCH_DBC)
|
|
|
| } // namespace dart
|
| +
|
| +#endif // !defined(DART_PRECOMPILED_RUNTIME)
|
|
|