Skip to content

Commit 2bdb02c

Browse files
authored
replace tabs with spaces (#1504)
1 parent 43e4117 commit 2bdb02c

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

Diff for: src/asm.md

+13-13
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ represents either a literal or a placeholder for an operand (just like format st
1313

1414
```rust
1515
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 },
1818
}
1919
```
2020

@@ -38,17 +38,17 @@ string parsing. The remaining options are mostly passed through to LLVM with lit
3838

3939
```rust
4040
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+
}
5252
}
5353
```
5454

0 commit comments

Comments
 (0)