From: Roger Ferrer Ibanez Date: Fri, 2 Jun 2017 07:21:27 +0000 (+0000) Subject: Remove file that I forgot to remove as part of rL304523 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4a862870467dde2cbf1708315531b22371d7a53d;p=clang Remove file that I forgot to remove as part of rL304523 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@304524 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/unaligned-duplicated-mangle-name.cpp b/test/CodeGenCXX/unaligned-duplicated-mangle-name.cpp deleted file mode 100644 index a23e6a47ab..0000000000 --- a/test/CodeGenCXX/unaligned-duplicated-mangle-name.cpp +++ /dev/null @@ -1,20 +0,0 @@ -// RUN: %clang_cc1 -triple %itanium_abi_triple -fms-extensions -emit-llvm-only %s -verify - -struct A -{ - int x; - void foo() __unaligned; - void foo(); -}; - -void A::foo() __unaligned -{ - this->x++; -} - -void A::foo() // expected-error {{definition with same mangled name as another definition}} - // expected-note@-6 {{previous definition is here}} -{ - this->x++; -} -