[clang] [abi] [ItaniumMangle] Remove a test case that fails due to expected r… (PR #110467)
via cfe-commits
cfe-commits at lists.llvm.org
Mon Sep 30 01:41:17 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-clang
Author: Viktoriia Bakalova (VitaNuo)
<details>
<summary>Changes</summary>
…edefinition failures.
---
Full diff: https://github.com/llvm/llvm-project/pull/110467.diff
1 Files Affected:
- (modified) clang/test/CodeGenCXX/mangle-concept.cpp (-23)
``````````diff
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);
}
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/110467
More information about the cfe-commits
mailing list