Add M68000 entry to arch_to_gcc

This commit is contained in:
Kevin Hamacher 2025-01-27 18:49:49 +01:00
parent 2e0595bc69
commit 5d12c54b34

View file

@ -242,6 +242,7 @@ pub fn to_gcc_features<'a>(sess: &Session, s: &'a str) -> SmallVec<[&'a str; 2]>
fn arch_to_gcc(name: &str) -> &str {
match name {
"M68000" => "68000",
"M68020" => "68020",
_ => name,
}