[llvm-commits] [llvm] r138084 - /llvm/trunk/test/FrontendC++/2010-02-17-DbgArtificialArg.cpp

Eric Christopher echristo at apple.com
Fri Aug 19 14:21:22 PDT 2011


Author: echristo
Date: Fri Aug 19 16:21:21 2011
New Revision: 138084

URL: http://llvm.org/viewvc/llvm-project?rev=138084&view=rev
Log:
Remove this test. There are other, duplicates, in the clang test suite.

Removed:
    llvm/trunk/test/FrontendC++/2010-02-17-DbgArtificialArg.cpp

Removed: llvm/trunk/test/FrontendC++/2010-02-17-DbgArtificialArg.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC%2B%2B/2010-02-17-DbgArtificialArg.cpp?rev=138083&view=auto
==============================================================================
--- llvm/trunk/test/FrontendC++/2010-02-17-DbgArtificialArg.cpp (original)
+++ llvm/trunk/test/FrontendC++/2010-02-17-DbgArtificialArg.cpp (removed)
@@ -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);
-}





More information about the llvm-commits mailing list