We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
MachineInfo
1 parent c9b3d33 commit f452197Copy full SHA for f452197
src/printer.rs
@@ -1076,6 +1076,7 @@ pub struct SmirJson<'t> {
1076
pub types: Vec<(stable_mir::ty::Ty, TypeMetadata)>,
1077
pub spans: Vec<(usize, SourceData)>,
1078
pub debug: Option<SmirJsonDebugInfo<'t>>,
1079
+ pub machine: stable_mir::target::MachineInfo,
1080
}
1081
1082
#[derive(Serialize)]
@@ -1160,6 +1161,7 @@ pub fn collect_smir(tcx: TyCtxt<'_>) -> SmirJson {
1160
1161
types,
1162
spans,
1163
debug,
1164
+ machine: stable_mir::target::MachineInfo::target(),
1165
1166
1167
0 commit comments