@@ -2,43 +2,43 @@ error[E0798]: arguments for `"cmse-nonsecure-call"` function too large to pass v
2
2
--> $DIR/params-via-stack.rs:16:64
3
3
|
4
4
LL | f1: extern "cmse-nonsecure-call" fn(u32, u32, u32, u32, x: u32, y: u32),
5
- | ^^^ ^^^ these arguments don't fit in the available registers
5
+ | ^^^ ^^^ does not fit in the available registers
6
6
| |
7
- | these arguments don't fit in the available registers
7
+ | does not fit in the available registers
8
8
|
9
- = note: functions with the `"cmse-nonsecure-call"` ABI must pass all their arguments via the 4 32-bit available argument registers
9
+ = note: functions with the `"cmse-nonsecure-call"` ABI must pass all their arguments via the 4 32-bit argument registers
10
10
11
11
error[E0798]: arguments for `"cmse-nonsecure-call"` function too large to pass via registers
12
12
--> $DIR/params-via-stack.rs:17:61
13
13
|
14
14
LL | f2: extern "cmse-nonsecure-call" fn(u32, u32, u32, u16, u16),
15
- | ^^^ this argument doesn't fit in the available registers
15
+ | ^^^ does not fit in the available registers
16
16
|
17
- = note: functions with the `"cmse-nonsecure-call"` ABI must pass all their arguments via the 4 32-bit available argument registers
17
+ = note: functions with the `"cmse-nonsecure-call"` ABI must pass all their arguments via the 4 32-bit argument registers
18
18
19
19
error[E0798]: arguments for `"cmse-nonsecure-call"` function too large to pass via registers
20
20
--> $DIR/params-via-stack.rs:18:51
21
21
|
22
22
LL | f3: extern "cmse-nonsecure-call" fn(u32, u64, u32),
23
- | ^^^ this argument doesn't fit in the available registers
23
+ | ^^^ does not fit in the available registers
24
24
|
25
- = note: functions with the `"cmse-nonsecure-call"` ABI must pass all their arguments via the 4 32-bit available argument registers
25
+ = note: functions with the `"cmse-nonsecure-call"` ABI must pass all their arguments via the 4 32-bit argument registers
26
26
27
27
error[E0798]: arguments for `"cmse-nonsecure-call"` function too large to pass via registers
28
28
--> $DIR/params-via-stack.rs:19:56
29
29
|
30
30
LL | f4: extern "cmse-nonsecure-call" fn(AlignRelevant, u32),
31
- | ^^^ this argument doesn't fit in the available registers
31
+ | ^^^ does not fit in the available registers
32
32
|
33
- = note: functions with the `"cmse-nonsecure-call"` ABI must pass all their arguments via the 4 32-bit available argument registers
33
+ = note: functions with the `"cmse-nonsecure-call"` ABI must pass all their arguments via the 4 32-bit argument registers
34
34
35
35
error[E0798]: arguments for `"cmse-nonsecure-call"` function too large to pass via registers
36
36
--> $DIR/params-via-stack.rs:20:41
37
37
|
38
38
LL | f5: extern "cmse-nonsecure-call" fn([u32; 5]),
39
- | ^^^^^^^^ this argument doesn't fit in the available registers
39
+ | ^^^^^^^^ does not fit in the available registers
40
40
|
41
- = note: functions with the `"cmse-nonsecure-call"` ABI must pass all their arguments via the 4 32-bit available argument registers
41
+ = note: functions with the `"cmse-nonsecure-call"` ABI must pass all their arguments via the 4 32-bit argument registers
42
42
43
43
error: aborting due to 5 previous errors
44
44
0 commit comments