https://github.com/Michael137 created 
https://github.com/llvm/llvm-project/pull/165298

We already have the same test (just different variable names) in 
`property-basic.m`.

>From 9596ce1a66dd5a06b1fc95c80966cc4871cd1c78 Mon Sep 17 00:00:00 2001
From: Michael Buch <[email protected]>
Date: Mon, 27 Oct 2025 19:11:53 +0000
Subject: [PATCH] [clang][DebugInfo][test] Remove redundant Objective-C
 property test

We already have the same test (just different variable names) in 
`property-basic.m`.
---
 clang/test/DebugInfo/ObjC/property-2.m | 18 ------------------
 1 file changed, 18 deletions(-)
 delete mode 100644 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
-@interface Foo {
-  int i;
-}
-@property int i;
-@end
-
-@implementation Foo
-@synthesize i;
-@end
-
-int bar(Foo *f) {
-  int i = 1;
-  f.i = 2;
-  i = f.i;
-  return i;
-}

_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to