Skip to content

Commit 180ed85

Browse files
compiler: take some AbiMap fields private
1 parent 9792f29 commit 180ed85

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

compiler/rustc_abi/src/map.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ pub struct AbiMap {
1616
pub rust_cold: CanonAbi,
1717

1818
// optional architecture-specific ABIs, should always answer a certain way per-arch
19-
pub efiapi: Option<CanonAbi>,
20-
pub win64: Option<CanonAbi>,
21-
pub sysv64: Option<CanonAbi>,
19+
efiapi: Option<CanonAbi>,
20+
win64: Option<CanonAbi>,
21+
sysv64: Option<CanonAbi>,
2222

2323
// optional abstract ABIs, these can be very weird
2424
pub stdcall: Option<CanonAbi>,

0 commit comments

Comments
 (0)