1
Fork 0

Auto merge of #94159 - erikdesjardins:align-load, r=nikic

Add !align metadata on loads of &/&mut/Box

Note that this refers to the alignment of what the loaded value points
to, _not_ the alignment of the loaded value itself.

r? `@ghost` (blocked on #94158)
This commit is contained in:
bors 2022-03-04 08:14:31 +00:00
commit 62ff2bcf94
3 changed files with 67 additions and 16 deletions

View file

@ -441,6 +441,7 @@ pub enum MetadataType {
MD_nontemporal = 9,
MD_mem_parallel_loop_access = 10,
MD_nonnull = 11,
MD_align = 17,
MD_type = 19,
MD_noundef = 29,
}