We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e82b533 commit f6a9367Copy full SHA for f6a9367
example/std_example.rs
@@ -166,6 +166,9 @@ fn main() {
166
enum Never {}
167
}
168
169
+ // FIXME once abi_unsupported_vector_types is a hard error disable this test when the respective
170
+ // target feature is not enabled.
171
+ #[allow(abi_unsupported_vector_types)]
172
foo(I64X2([0, 0]));
173
174
transmute_wide_pointer();
@@ -207,6 +210,9 @@ fn rust_call_abi() {
207
210
struct I64X2([i64; 2]);
208
211
209
212
#[allow(improper_ctypes_definitions)]
213
+// FIXME once abi_unsupported_vector_types is a hard error disable this test when the respective
214
+// target feature is not enabled.
215
+#[allow(abi_unsupported_vector_types)]
216
extern "C" fn foo(_a: I64X2) {}
217
218
#[cfg(target_arch = "x86_64")]
0 commit comments