From b4c9bb53e6325242da68f947a9c63dc8856434cc Mon Sep 17 00:00:00 2001 From: Joe Nash Date: Thu, 25 Jul 2024 16:51:53 -0400 Subject: [PATCH] Delete MMX name mangler case The type was removed in https://github.com/llvm/llvm-project/pull/98505 --- lib/Dialect/Utils.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/Dialect/Utils.cpp b/lib/Dialect/Utils.cpp index 292b066..c0538a8 100644 --- a/lib/Dialect/Utils.cpp +++ b/lib/Dialect/Utils.cpp @@ -11,7 +11,7 @@ * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and - * limitations under the License. + * limitations under the License. */ #include "llvm-dialects/Dialect/Utils.h" @@ -116,7 +116,6 @@ static std::string getMangledTypeStr(Type *Ty, bool &HasUnnamedType) { case Type::X86_FP80TyID: Result += "f80"; break; case Type::FP128TyID: Result += "f128"; break; case Type::PPC_FP128TyID: Result += "ppcf128"; break; - case Type::X86_MMXTyID: Result += "x86mmx"; break; case Type::X86_AMXTyID: Result += "x86amx"; break; case Type::IntegerTyID: Result += "i" + utostr(cast(Ty)->getBitWidth());