summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX
diff options
context:
space:
mode:
authorRoger Ferrer Ibanez <roger.ferreribanez@arm.com>2017-06-02 07:21:27 +0000
committerRoger Ferrer Ibanez <roger.ferreribanez@arm.com>2017-06-02 07:21:27 +0000
commit4a862870467dde2cbf1708315531b22371d7a53d (patch)
tree0a3ef5dbf7d3db7426df30ac05fb96700c4c500f /test/CodeGenCXX
parent4c7454ba51c05f2083859db5ccacc42b151d98ce (diff)
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
Diffstat (limited to 'test/CodeGenCXX')
-rw-r--r--test/CodeGenCXX/unaligned-duplicated-mangle-name.cpp20
1 files changed, 0 insertions, 20 deletions
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++;
-}
-