diff --git a/third_party/intel/lib/Utils/Mangling.cpp b/third_party/intel/lib/Utils/Mangling.cpp index 12bc147036..1fe83f0422 100644 --- a/third_party/intel/lib/Utils/Mangling.cpp +++ b/third_party/intel/lib/Utils/Mangling.cpp @@ -25,6 +25,8 @@ std::string getTypeMangling(Type ty, bool isUnsigned) { .Case([](Float64Type) -> std::string { return "d"; }) .Case([isUnsigned](IntegerType ty) -> std::string { switch (ty.getWidth()) { + case 4: + return "i"; case 8: return isUnsigned ? "h" : "c"; case 16: