summaryrefslogtreecommitdiffstats
path: root/clang
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
commitb4aef7963e019e71c4e415d9b1f04a4ab0f474ad (patch)
tree08902437a10e87ec131f7d1fa059167c09914be9 /clang
parentfd9384a2291da81afe9c2c3cf989eafc3827b3b5 (diff)
downloadbcm5719-llvm-b4aef7963e019e71c4e415d9b1f04a4ab0f474ad.tar.gz
bcm5719-llvm-b4aef7963e019e71c4e415d9b1f04a4ab0f474ad.zip
Remove file that I forgot to remove as part of rL304523
llvm-svn: 304524
Diffstat (limited to 'clang')
-rw-r--r--clang/test/CodeGenCXX/unaligned-duplicated-mangle-name.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/clang/test/CodeGenCXX/unaligned-duplicated-mangle-name.cpp b/clang/test/CodeGenCXX/unaligned-duplicated-mangle-name.cpp
deleted file mode 100644
index a23e6a47ab0..00000000000
--- a/clang/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++;
-}
-
OpenPOWER on IntegriCloud