Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
0d8a0c5
Rename LinesAnyMap to LinesMap
sugar700 Aug 9, 2022
cef81dc
Fix handling of trailing bare CR in str::lines
sugar700 Aug 9, 2022
102c8fa
Render source page layout with Askama
clubby789 Mar 12, 2023
6639538
Remove VecMap
compiler-errors Mar 17, 2023
27e9ee9
move Option::as_slice to intrinsic
llogiq Mar 15, 2023
2ec7f6c
refactor `fn bootstrap::builder::Builder::compiler_for`
onur-ozkan Mar 18, 2023
572c56c
Update links for custom discriminants.
ehuss Jan 19, 2023
83dec62
Add a layout argument to `enforce_validity`.
oli-obk Mar 21, 2023
f066d67
Detect uninhabited types early in const eval.
oli-obk Mar 21, 2023
d3a5541
rustdoc: Cleanup parent module tracking for doc links
petrochenkov Mar 18, 2023
0f45d85
rustdoc: Factor out some doc link resolution code into a separate fun…
petrochenkov Mar 21, 2023
4212c1b
Add `safe` to number rendering
clubby789 Mar 21, 2023
364a5d4
Do not consider synthesized RPITITs on missing items checks
spastorino Mar 20, 2023
c1f3529
Always encode RPITITs
spastorino Mar 20, 2023
c3e6f68
RPITITs are DefKind::Opaque with new lowering strategy
compiler-errors Mar 20, 2023
df034b0
Change text -> rust,ignore highlighting in sanitizer.md
tgross35 Mar 10, 2023
d694f47
Rollup merge of #100311 - xfix:lines-fix-handling-of-bare-cr, r=Chris…
Dylan-DPC Mar 22, 2023
59d9cbf
Rollup merge of #108997 - tgross35:patch-1, r=JohnTitor
Dylan-DPC Mar 22, 2023
14d0646
Rollup merge of #109179 - llogiq:intrinsically-option-as-slice, r=eholk
Dylan-DPC Mar 22, 2023
d8543ab
Rollup merge of #109187 - clubby789:askama-source, r=GuillaumeGomez
Dylan-DPC Mar 22, 2023
70918ec
Rollup merge of #109280 - compiler-errors:no-vec-map, r=Mark-Simulacrum
Dylan-DPC Mar 22, 2023
7a57d88
Rollup merge of #109295 - ozkanonur:issue-109286, r=ozkanonur
Dylan-DPC Mar 22, 2023
af3bd22
Rollup merge of #109312 - petrochenkov:docice5, r=GuillaumeGomez
Dylan-DPC Mar 22, 2023
8ce52b7
Rollup merge of #109317 - ehuss:discriminant-link-fix, r=Nilstrieb
Dylan-DPC Mar 22, 2023
b9151b2
Rollup merge of #109405 - compiler-errors:rpitit-as-opaques, r=spasto…
Dylan-DPC Mar 22, 2023
031640c
Rollup merge of #109414 - spastorino:new-rpitit-16, r=compiler-errors
Dylan-DPC Mar 22, 2023
eda88a3
Rollup merge of #109435 - oli-obk:🇨🇭🥚_copy_op, r=RalfJung
Dylan-DPC Mar 22, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Change text -> rust,ignore highlighting in sanitizer.md
Marked ignore due to difficulty getting doctests to pass cross-platform
  • Loading branch information
tgross35 committed Mar 22, 2023
commit df034b06b72f97a39844ce84a648e4de7fa2c58d
4 changes: 2 additions & 2 deletions src/doc/unstable-book/src/compiler-flags/sanitizer.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ See the [Clang ControlFlowIntegrity documentation][clang-cfi] for more details.

## Example

```text
```rust,ignore
#![feature(naked_functions)]

use std::arch::asm;
Expand All @@ -238,7 +238,7 @@ pub extern "C" fn add_two(x: i32) {
nop
nop
nop
lea rax, [rdi+2]
lea eax, [edi+2]
ret
",
options(noreturn)
Expand Down