forked from Rust-GPU/rust-gpu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathissue-1002.stderr
More file actions
34 lines (29 loc) · 1.24 KB
/
issue-1002.stderr
File metadata and controls
34 lines (29 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
error: using `OpReturn` to return from within `asm!` is disallowed
--> $DIR/issue-1002.rs:9:15
|
9 | asm!("OpReturn", options(noreturn));
| ^^^^^^^^
|
= note: resuming execution, without falling through the end of the `asm!` block, is always undefined behavior
error: using `OpReturnValue` to return from within `asm!` is disallowed
--> $DIR/issue-1002.rs:16:14
|
16 | "OpReturnValue {x}",
| ^^^^^^^^^^^^^^^^^
|
= note: resuming execution, without falling through the end of the `asm!` block, is always undefined behavior
error: using `OpReturn` to return from within `asm!` is disallowed
--> $DIR/issue-1002.rs:26:14
|
26 | "OpReturn", // close active block
| ^^^^^^^^
|
= note: resuming execution, without falling through the end of the `asm!` block, is always undefined behavior
error: using `OpReturnValue` to return from within `asm!` is disallowed
--> $DIR/issue-1002.rs:35:14
|
35 | "OpReturnValue {x}", // close active block
| ^^^^^^^^^^^^^^^^^
|
= note: resuming execution, without falling through the end of the `asm!` block, is always undefined behavior
error: aborting due to 4 previous errors