We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bbfd21 commit 90f5d2cCopy full SHA for 90f5d2c
third_party/intel/lib/Utils/Mangling.cpp
@@ -25,6 +25,8 @@ std::string getTypeMangling(Type ty, bool isUnsigned) {
25
.Case([](Float64Type) -> std::string { return "d"; })
26
.Case([isUnsigned](IntegerType ty) -> std::string {
27
switch (ty.getWidth()) {
28
+ case 4:
29
+ return "i";
30
case 8:
31
return isUnsigned ? "h" : "c";
32
case 16:
0 commit comments