Merge pull request #613 from fluxchief/68000

Add M68000 entry to arch_to_gcc
This commit is contained in:
antoyo 2025-02-02 09:13:44 -05:00 committed by GitHub
commit efb5185912
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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,
}