[clang] [CIR]Add name for function type in vtable (PR #163839)
via cfe-commits
cfe-commits at lists.llvm.org
Thu Oct 30 11:14:16 PDT 2025
https://github.com/y-Adrian updated https://github.com/llvm/llvm-project/pull/163839
>From 31d722971c88d371d120f1201cc1faf867f81148 Mon Sep 17 00:00:00 2001
From: Adrian <zhaoxu7263 at 163.com>
Date: Fri, 17 Oct 2025 01:56:33 +0800
Subject: [PATCH] [CIR]llvm#163601:handle function type
---
clang/lib/CIR/CodeGen/CIRGenItaniumCXXABI.cpp | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/clang/lib/CIR/CodeGen/CIRGenItaniumCXXABI.cpp b/clang/lib/CIR/CodeGen/CIRGenItaniumCXXABI.cpp
index 88fedf1acc6a1..841d4898d1d7e 100644
--- a/clang/lib/CIR/CodeGen/CIRGenItaniumCXXABI.cpp
+++ b/clang/lib/CIR/CodeGen/CIRGenItaniumCXXABI.cpp
@@ -957,8 +957,7 @@ const char *vTableClassNameForType(const CIRGenModule &cgm, const Type *ty) {
case Type::FunctionNoProto:
case Type::FunctionProto:
- cgm.errorNYI("VTableClassNameForType: __function_type_info");
- break;
+ return "_ZTVN10__cxxabiv120__function_type_infoE";
case Type::Enum:
return "_ZTVN10__cxxabiv116__enum_type_infoE";
More information about the cfe-commits
mailing list