Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
d442cf5
control libunwind linkage mode via `crt-static` on gnullvm targets
mati865 Sep 28, 2024
b440ef8
Move some alloc tests to the alloctests crate
bjorn3 Dec 4, 2024
3e3bcfa
[CI] Use a lockfile for installing the `datadog` package
Kobzol Dec 9, 2024
3b05779
Add feature gate, not working yet
compiler-errors Nov 16, 2024
a7fa4cb
Implement projection and shim for AFIDT
compiler-errors Nov 16, 2024
57e8a1c
Don't check RPITITs that are Self:Sized for PointerLike
compiler-errors Dec 10, 2024
67df7cb
Simplify `rustc_mir_dataflow::abs_domain`.
nnethercote Dec 8, 2024
f7ca820
Forbid unsafe_op_in_unsafe_fn in hurd-specific os and sys files
sthibaul Dec 10, 2024
014363e
Don't emit "field expressions may not have generic arguments" if it's…
Dec 10, 2024
c04b52a
Add regression tests
oli-obk Dec 9, 2024
f11edf7
allow `symbol_intern_string_literal` lint in test modules
onur-ozkan Dec 11, 2024
1268445
remove `Kind` check for `symbol_intern_string_literal`
onur-ozkan Dec 11, 2024
6a8bc4b
Remove consteval note from <*mut T>::align_offset docs.
zachs18 Dec 11, 2024
6d3d61f
Evaluate constants in SIMD vec lengths before rejecting them
oli-obk Dec 9, 2024
98edb8f
Clarify why a type is rejected for asm!
oli-obk Dec 9, 2024
1bc5897
Stabilize the Rust 2024 prelude
ehuss Dec 11, 2024
40c9645
Remove `PErr`.
nnethercote Dec 12, 2024
2caada1
Properly consider APITs for never type fallback ascription fix
compiler-errors Dec 10, 2024
2779de7
Rollup merge of #122003 - mati865:gnullvm-build-libunwind, r=petroche…
jieyouxu Dec 12, 2024
85ab5be
Rollup merge of #133122 - compiler-errors:afidt, r=oli-obk
jieyouxu Dec 12, 2024
65472d2
Rollup merge of #133859 - bjorn3:move_tests_to_alloctests, r=tgross35
jieyouxu Dec 12, 2024
9aef64f
Rollup merge of #134070 - oli-obk:push-nquzymupzlsq, r=jieyouxu
jieyouxu Dec 12, 2024
95125c1
Rollup merge of #134095 - Kobzol:datadog-lockfile, r=MarcoIeni
jieyouxu Dec 12, 2024
b2434ea
Rollup merge of #134144 - compiler-errors:fallback-apit, r=WaffleLapkin
jieyouxu Dec 12, 2024
41bec17
Rollup merge of #134152 - nnethercote:simplify-rustc_mir_dataflow-abs…
jieyouxu Dec 12, 2024
c5a1869
Rollup merge of #134154 - dev-ardi:field-expr-generics, r=compiler-er…
jieyouxu Dec 12, 2024
6daf30a
Rollup merge of #134155 - sthibaul:unsafe_op_in_unsafe_fn, r=tgross35
jieyouxu Dec 12, 2024
69d9a2a
Rollup merge of #134173 - onur-ozkan:allow-symbol-intern-string-liter…
jieyouxu Dec 12, 2024
3025feb
Rollup merge of #134178 - ehuss:stabilize-2024-prelude, r=amanieu,tra…
jieyouxu Dec 12, 2024
52919ed
Rollup merge of #134179 - zachs18:align_offset_mut_ptr_doc, r=working…
jieyouxu Dec 12, 2024
328b086
Rollup merge of #134187 - nnethercote:rm-PErr, r=jieyouxu
jieyouxu Dec 12, 2024
File filter

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
Forbid unsafe_op_in_unsafe_fn in hurd-specific os and sys files
Adding it did not cause any error. Most of this falls back on Unix already. See #127747
  • Loading branch information
sthibaul committed Dec 11, 2024
commit f7ca820f7d3cc9f10041e1df6a91293cbe1ed402
1 change: 1 addition & 0 deletions library/std/src/os/hurd/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
//! Hurd-specific definitions
#![stable(feature = "raw_ext", since = "1.1.0")]
#![forbid(unsafe_op_in_unsafe_fn)]

pub mod fs;
pub mod raw;
Loading