about summary refs log tree commit diff
path: root/compiler/rustc_codegen_cranelift/example
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-12-06 15:49:11 +0000
committerbors <bors@rust-lang.org>2024-12-06 15:49:11 +0000
commitcdeddae4f6f0934d9cc895fe1cacccba78ff1981 (patch)
treea280cd6ef6611415bf3812b644692a5e2889d4c5 /compiler/rustc_codegen_cranelift/example
parentbc145cec4565a97a1b08df52d26ddf48ce3d7d0a (diff)
parent063e21b4c497ee626c1a6770e82fa75070c1e8ab (diff)
downloadrust-cdeddae4f6f0934d9cc895fe1cacccba78ff1981.tar.gz
rust-cdeddae4f6f0934d9cc895fe1cacccba78ff1981.zip
Auto merge of #133956 - bjorn3:sync_cg_clif-2024-12-06, r=bjorn3
Sync cg clif 2024 12 06

The main highlights this time are a Cranelift update disabling the clif ir verifier by default for better performance.

r? `@ghost`

`@rustbot` label +A-codegen +A-cranelift +T-compiler
Diffstat (limited to 'compiler/rustc_codegen_cranelift/example')
-rw-r--r--compiler/rustc_codegen_cranelift/example/std_example.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_cranelift/example/std_example.rs b/compiler/rustc_codegen_cranelift/example/std_example.rs
index 3078288c286..0b1d83c5630 100644
--- a/compiler/rustc_codegen_cranelift/example/std_example.rs
+++ b/compiler/rustc_codegen_cranelift/example/std_example.rs
@@ -8,6 +8,9 @@
     unboxed_closures
 )]
 #![allow(internal_features)]
+// FIXME once abi_unsupported_vector_types is a hard error disable the foo test when the respective
+// target feature is not enabled.
+#![allow(abi_unsupported_vector_types)]
 
 #[cfg(target_arch = "x86_64")]
 use std::arch::x86_64::*;