From 8f0e330467ceaf48b7988f9d4d8872f1eba2fef8 Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Tue, 16 Jun 2020 10:03:09 -0700 Subject: [PATCH] Add `TODO` comments with link to issue for aarch64 reference types --- build.rs | 4 ++-- tests/all/main.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.rs b/build.rs index 40b4385b5e..08ac51f651 100644 --- a/build.rs +++ b/build.rs @@ -211,8 +211,8 @@ fn ignore(testsuite: &str, testname: &str, strategy: &str) -> bool { ("reference_types", "table_copy_on_imported_tables") | ("reference_types", "externref_id_function") => { - // Ignore if this isn't x64, because Cranelift only supports - // reference types on x64. + // TODO(#1886): Ignore if this isn't x64, because Cranelift only + // supports reference types on x64. return env::var("CARGO_CFG_TARGET_ARCH").unwrap() != "x86_64"; } diff --git a/tests/all/main.rs b/tests/all/main.rs index a664807f50..e278d07504 100644 --- a/tests/all/main.rs +++ b/tests/all/main.rs @@ -19,6 +19,6 @@ mod traps; mod use_after_drop; mod wast; -// Cranelift only supports reference types on x64. +// TODO(#1886): Cranelift only supports reference types on x64. #[cfg(target_arch = "x86_64")] mod gc;