[clang] e44dce3 - [clang][DebugInfo][test] Remove redundant Objective-C property test (#165298)
via cfe-commits
cfe-commits at lists.llvm.org
Mon Oct 27 12:40:36 PDT 2025
Author: Michael Buch
Date: 2025-10-27T19:40:32Z
New Revision: e44dce3cb62013a7d1f573d6e7a1b2fffaaf36d5
URL: https://github.com/llvm/llvm-project/commit/e44dce3cb62013a7d1f573d6e7a1b2fffaaf36d5
DIFF: https://github.com/llvm/llvm-project/commit/e44dce3cb62013a7d1f573d6e7a1b2fffaaf36d5.diff
LOG: [clang][DebugInfo][test] Remove redundant Objective-C property test (#165298)
We already have the same test (just different variable names) in
`property-basic.m`.
Added:
Modified:
Removed:
clang/test/DebugInfo/ObjC/property-2.m
################################################################################
diff --git a/clang/test/DebugInfo/ObjC/property-2.m b/clang/test/DebugInfo/ObjC/property-2.m
deleted file mode 100644
index f15213131ccc0..0000000000000
--- a/clang/test/DebugInfo/ObjC/property-2.m
+++ /dev/null
@@ -1,18 +0,0 @@
-// FIXME: Check IR rather than asm, then triple is not needed.
-// RUN: %clang_cc1 -triple %itanium_abi_triple -S -debug-info-kind=limited -x objective-c < %s | grep DW_AT_name
- at interface Foo {
- int i;
-}
- at property int i;
- at end
-
- at implementation Foo
- at synthesize i;
- at end
-
-int bar(Foo *f) {
- int i = 1;
- f.i = 2;
- i = f.i;
- return i;
-}
More information about the cfe-commits
mailing list