| Index: runtime/vm/resolver_test.cc
|
| ===================================================================
|
| --- runtime/vm/resolver_test.cc (revision 3367)
|
| +++ runtime/vm/resolver_test.cc (working copy)
|
| @@ -13,7 +13,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)
|
|
|
| // Setup function for invocation.
|
| static void SetupFunction(const char* test_library_name,
|
| @@ -222,6 +223,6 @@
|
| }
|
| }
|
|
|
| -#endif // TARGET_ARCH_IA32.
|
| +#endif // defined(TARGET_ARCH_IA32) || defined(TARGET_ARCH_X64).
|
|
|
| } // namespace dart
|
|
|