Rename lookup_variant to lookup

This commit is contained in:
bjorn3
2021-09-29 22:37:45 +02:00
parent 4b6d20d03f
commit 463a88e002
3 changed files with 5 additions and 11 deletions

View File

@@ -1159,7 +1159,7 @@ impl<'a> Parser<'a> {
Ok(triple) => triple,
Err(err) => return err!(loc, err),
};
let mut isa_builder = match isa::lookup_variant(triple) {
let mut isa_builder = match isa::lookup(triple) {
Err(isa::LookupError::SupportDisabled) => {
continue;
}