From cccb1836a00b86d27cd669edb0f94f22d0c535c9 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Fri, 19 Aug 2011 21:21:21 +0000 Subject: [PATCH] Remove this test. There are other, duplicates, in the clang test suite. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138084 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../2010-02-17-DbgArtificialArg.cpp | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 test/FrontendC++/2010-02-17-DbgArtificialArg.cpp diff --git a/test/FrontendC++/2010-02-17-DbgArtificialArg.cpp b/test/FrontendC++/2010-02-17-DbgArtificialArg.cpp deleted file mode 100644 index d0a2fe50211..00000000000 --- a/test/FrontendC++/2010-02-17-DbgArtificialArg.cpp +++ /dev/null @@ -1,21 +0,0 @@ -// RUN: %llvmgcc -g -S %s -dA -fverbose-asm -o %t -// RUN: llc -asm-verbose < %t | FileCheck %s -// Test to artificial attribute attahed to "this" pointer type. -// Radar 7655792 and 7655002 - -class A { -public: - int fn1(int i) const { return i + 2; }; -}; - -int foo() { - A a; -//CHECK: .ascii "this" ## DW_AT_name -//CHECK-NEXT: .byte 0 -//CHECK-NEXT: ## DW_AT_decl_file -//CHECK-NEXT: ## DW_AT_decl_line -//CHECK-NEXT: ## DW_AT_type -//CHECK-NEXT: ## DW_AT_artificial - - return a.fn1(1); -}