]> granicus.if.org Git - clang/commitdiff
Remove file that I forgot to remove as part of rL304523
authorRoger Ferrer Ibanez <roger.ferreribanez@arm.com>
Fri, 2 Jun 2017 07:21:27 +0000 (07:21 +0000)
committerRoger Ferrer Ibanez <roger.ferreribanez@arm.com>
Fri, 2 Jun 2017 07:21:27 +0000 (07:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@304524 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGenCXX/unaligned-duplicated-mangle-name.cpp [deleted file]

diff --git a/test/CodeGenCXX/unaligned-duplicated-mangle-name.cpp b/test/CodeGenCXX/unaligned-duplicated-mangle-name.cpp
deleted file mode 100644 (file)
index a23e6a4..0000000
+++ /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++;
-}
-