r304524 - Remove file that I forgot to remove as part of rL304523

Roger Ferrer Ibanez via cfe-commits cfe-commits at lists.llvm.org
Fri Jun 2 00:21:27 PDT 2017


Author: rogfer01
Date: Fri Jun  2 02:21:27 2017
New Revision: 304524

URL: http://llvm.org/viewvc/llvm-project?rev=304524&view=rev
Log:
Remove file that I forgot to remove as part of rL304523


Removed:
    cfe/trunk/test/CodeGenCXX/unaligned-duplicated-mangle-name.cpp

Removed: cfe/trunk/test/CodeGenCXX/unaligned-duplicated-mangle-name.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/unaligned-duplicated-mangle-name.cpp?rev=304523&view=auto
==============================================================================
--- cfe/trunk/test/CodeGenCXX/unaligned-duplicated-mangle-name.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/unaligned-duplicated-mangle-name.cpp (removed)
@@ -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 at -6 {{previous definition is here}}
-{
-    this->x++;
-}
-




More information about the cfe-commits mailing list