glasm: Implement more logical ops

This commit is contained in:
ameerj 2021-05-08 18:59:05 -04:00
parent 941c6dc740
commit 68cc445b8e
2 changed files with 5 additions and 5 deletions

View file

@ -33,7 +33,7 @@ std::string ImmValue(const IR::Value& value) {
case IR::Type::F32:
return fmt::format("{}", value.F32());
default:
throw NotImplementedException("Immediate type", value.Type());
throw NotImplementedException("Immediate type {}", value.Type());
}
}
} // Anonymous namespace