| Index: runtime/vm/custom_isolate_test.cc
|
| ===================================================================
|
| --- runtime/vm/custom_isolate_test.cc (revision 3367)
|
| +++ runtime/vm/custom_isolate_test.cc (working copy)
|
| @@ -15,7 +15,8 @@
|
|
|
| namespace dart {
|
|
|
| -#if defined(TARGET_ARCH_IA32) // only ia32 can run execution tests.
|
| +// Only ia32 and x64 can run execution tests.
|
| +#if defined(TARGET_ARCH_IA32) || defined(TARGET_ARCH_X64)
|
|
|
| static void native_echo(Dart_NativeArguments args);
|
| static void CustomIsolateImpl_start(Dart_NativeArguments args);
|
| @@ -424,6 +425,6 @@
|
| delete event_queue;
|
| }
|
|
|
| -#endif // TARGET_ARCH_IA32.
|
| +#endif // defined(TARGET_ARCH_IA32) || defined(TARGET_ARCH_X64).
|
|
|
| } // namespace dart
|
|
|