Skip to content

Rollup of 8 pull requests #140161

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 21 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
7aab011
Use posix_spawn on cygwin
Berrysoft Apr 10, 2025
b5f5f62
make abi_unsupported_vector_types a hard error
RalfJung Apr 3, 2025
2d21c14
respect `repr(align(N))` on functions in miri
folkertdev Apr 20, 2025
c0c6d42
support both trait and non-trail associated declaration
Shourya742 Apr 21, 2025
b70763e
Update books
rustbot Apr 21, 2025
a7c7119
Added test
Shourya742 Apr 21, 2025
b8ca007
move autodiff pretty test to a autodiff sub module
Shourya742 Apr 22, 2025
6be270b
Handle another negated literal in `eat_token_lit`.
nnethercote Apr 22, 2025
e800bf7
Update `compiler_builtins` to 0.1.156
tgross35 Apr 22, 2025
8b62073
wasm needs simd to be explicitly enabled
RalfJung Apr 22, 2025
e7a8654
test_nan: ensure the NAN contant is quiet
RalfJung Apr 22, 2025
5717623
MANTISSA_DIGITS: explain relation to bitwise representation
RalfJung Apr 22, 2025
47a1278
add comment for "Other" case
RalfJung Apr 22, 2025
7daa2e7
Rollup merge of #139309 - RalfJung:abi_unsupported_vector_types, r=fe…
ChrisDenton Apr 22, 2025
22907be
Rollup merge of #139617 - Berrysoft:cygwin-posix-spawn, r=joboet
ChrisDenton Apr 22, 2025
060b331
Rollup merge of #140072 - folkertdev:miri-fn-align, r=RalfJung
ChrisDenton Apr 22, 2025
a7b44e2
Rollup merge of #140104 - Shourya742:2025-04-21-auto-diff-fails-on-im…
ChrisDenton Apr 22, 2025
8351769
Rollup merge of #140124 - rustbot:docs-update, r=ehuss
ChrisDenton Apr 22, 2025
1b91f1c
Rollup merge of #140144 - nnethercote:fix-140098, r=petrochenkov
ChrisDenton Apr 22, 2025
268d8d4
Rollup merge of #140146 - tgross35:update-builtins, r=tgross35
ChrisDenton Apr 22, 2025
6864ec4
Rollup merge of #140149 - RalfJung:test_nan, r=tgross35
ChrisDenton Apr 22, 2025
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
add comment for "Other" case
  • Loading branch information
RalfJung authored Apr 22, 2025
commit 47a127884135771ae557eca71f964a5db655c2ea
1 change: 1 addition & 0 deletions compiler/rustc_const_eval/src/interpret/memory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -882,6 +882,7 @@ impl<'tcx, M: Machine<'tcx>> InterpCx<'tcx, M> {

Ord::max(global_align, fn_align).unwrap_or(Align::ONE)
}
// Machine-specific extra functions currently do not support alignment restrictions.
FnVal::Other(_) => Align::ONE,
};

Expand Down
Loading