| Index: runtime/vm/exceptions_test.cc
|
| ===================================================================
|
| --- runtime/vm/exceptions_test.cc (revision 3367)
|
| +++ runtime/vm/exceptions_test.cc (working copy)
|
| @@ -9,7 +9,8 @@
|
|
|
| namespace dart {
|
|
|
| -#if defined(TARGET_ARCH_IA32) // only ia32 can run exception tests.
|
| +// Only ia32 and x64 can run execution tests.
|
| +#if defined(TARGET_ARCH_IA32) || defined(TARGET_ARCH_X64)
|
| #define FUNCTION_NAME(name) UnhandledExcp_##name
|
| #define REGISTER_FUNCTION(name, count) \
|
| { ""#name, FUNCTION_NAME(name), count },
|
| @@ -133,6 +134,6 @@
|
| 0,
|
| NULL);
|
| }
|
| -#endif // TARGET_ARCH_IA32.
|
| +#endif // defined(TARGET_ARCH_IA32) || defined(TARGET_ARCH_X64).
|
|
|
| } // namespace dart
|
|
|