about summary refs log tree commit diff
path: root/tests/ui/abi/vectorcall-abi-checks.stderr
blob: 671ebc25b42a01f8c3dd3d7649d7e4ce81c360e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error: this function definition uses ABI "vectorcall" which requires the `sse2` target feature, which is not enabled
  --> $DIR/vectorcall-abi-checks.rs:13:1
   |
LL | pub extern "vectorcall" fn f() {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ function defined here
   |
   = help: consider enabling it globally (`-C target-feature=+sse2`) or locally (`#[target_feature(enable="sse2")]`)

error: this function call uses ABI "vectorcall" which requires the `sse2` target feature, which is not enabled in the caller
  --> $DIR/vectorcall-abi-checks.rs:19:5
   |
LL |     f();
   |     ^^^ function called here
   |
   = help: consider enabling it globally (`-C target-feature=+sse2`) or locally (`#[target_feature(enable="sse2")]`)

error: aborting due to 2 previous errors