File tree 1 file changed +13
-13
lines changed
1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ represents either a literal or a placeholder for an operand (just like format st
13
13
14
14
``` rust
15
15
pub enum InlineAsmTemplatePiece {
16
- String (String ),
17
- Placeholder { operand_idx : usize , modifier : Option <char >, span : Span },
16
+ String (String ),
17
+ Placeholder { operand_idx : usize , modifier : Option <char >, span : Span },
18
18
}
19
19
```
20
20
@@ -38,17 +38,17 @@ string parsing. The remaining options are mostly passed through to LLVM with lit
38
38
39
39
``` rust
40
40
bitflags :: bitflags! {
41
- pub struct InlineAsmOptions : u16 {
42
- const PURE = 1 << 0 ;
43
- const NOMEM = 1 << 1 ;
44
- const READONLY = 1 << 2 ;
45
- const PRESERVES_FLAGS = 1 << 3 ;
46
- const NORETURN = 1 << 4 ;
47
- const NOSTACK = 1 << 5 ;
48
- const ATT_SYNTAX = 1 << 6 ;
49
- const RAW = 1 << 7 ;
50
- const MAY_UNWIND = 1 << 8 ;
51
- }
41
+ pub struct InlineAsmOptions : u16 {
42
+ const PURE = 1 << 0 ;
43
+ const NOMEM = 1 << 1 ;
44
+ const READONLY = 1 << 2 ;
45
+ const PRESERVES_FLAGS = 1 << 3 ;
46
+ const NORETURN = 1 << 4 ;
47
+ const NOSTACK = 1 << 5 ;
48
+ const ATT_SYNTAX = 1 << 6 ;
49
+ const RAW = 1 << 7 ;
50
+ const MAY_UNWIND = 1 << 8 ;
51
+ }
52
52
}
53
53
```
54
54
You can’t perform that action at this time.
0 commit comments