[clang] [abi] [ItaniumMangle] Remove a test case that fails due to expected r… (PR #110467)

Viktoriia Bakalova via cfe-commits cfe-commits at lists.llvm.org
Mon Sep 30 01:40:40 PDT 2024


https://github.com/VitaNuo created https://github.com/llvm/llvm-project/pull/110467

…edefinition failures.

>From 1557e3b9d672bb1f2fce745d664c039d578e5d0c Mon Sep 17 00:00:00 2001
From: Viktoriia Bakalova <bakalova at google.com>
Date: Mon, 30 Sep 2024 08:39:48 +0000
Subject: [PATCH] [abi] [ItaniumMangle] Remove a test case that fails due to
 expected redefinition failures.

---
 clang/test/CodeGenCXX/mangle-concept.cpp | 23 -----------------------
 1 file changed, 23 deletions(-)

diff --git a/clang/test/CodeGenCXX/mangle-concept.cpp b/clang/test/CodeGenCXX/mangle-concept.cpp
index 966117544bfec1..6053511c00a7b5 100644
--- a/clang/test/CodeGenCXX/mangle-concept.cpp
+++ b/clang/test/CodeGenCXX/mangle-concept.cpp
@@ -52,7 +52,6 @@ namespace test2 {
   };
 
   A<int> ai;
-  A<bool> aj;
 
   // CHECK-LABEL: define {{.*}}@{{.*}}test2{{.*}}use
   void use() {
@@ -77,28 +76,6 @@ namespace test2 {
     // CHECK: call {{.*}}@_ZN5test21lITk4TruevEEvz(
     // CLANG17: call {{.*}}@_ZN5test21lIvEEvz(
     l(ai);
-
-    // CHECK: call {{.*}}@_ZN5test21AIbEF1fEzQ4TrueIT_E(
-    // CLANG17: call {{.*}}@_ZN5test21fEz(
-    f(aj);
-    // CHECK: call {{.*}}@_ZN5test21AIbEF1gIvEEvzQaa4TrueIT_E4TrueITL0__E(
-    // CLANG17: call {{.*}}@_ZN5test21gIvEEvz(
-    g(aj);
-    // CHECK: call {{.*}}@_ZN5test21hIvEEvzQ4TrueITL0__E(
-    // CLANG17: call {{.*}}@_ZN5test21hIvEEvz(
-    h(aj);
-    // CHECK: call {{.*}}@_ZN5test21AIbEF1iIvQaa4TrueIT_E4TrueITL0__EEEvz(
-    // CLANG17: call {{.*}}@_ZN5test21iIvEEvz(
-    i(aj);
-    // CHECK: call {{.*}}@_ZN5test21jIvQ4TrueITL0__EEEvz(
-    // CLANG17: call {{.*}}@_ZN5test21jIvEEvz(
-    j(aj);
-    // CHECK: call {{.*}}@_ZN5test21AIbEF1kITk4TruevQ4TrueIT_EEEvz(
-    // CLANG17: call {{.*}}@_ZN5test21kIvEEvz(
-    k(aj);
-    // CHECK: call {{.*}}@_ZN5test21lITk4TruevEEvz(
-    // CLANG17: call {{.*}}@_ZN5test21lIvEEvz(
-    l(aj);
   }
 }
 



More information about the cfe-commits mailing list