OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [libstdc++-v3/] [testsuite/] [abi/] [demangle/] [regression/] [cw-14.cc] - Blame information for rev 424

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 424 jeremybenn
// 2003-02-26  Carlo Wood  <carlo@alinoe.com>
2
 
3
// Copyright (C) 2003, 2009 Free Software Foundation, Inc.
4
//
5
// This file is part of the GNU ISO C++ Library.  This library is free
6
// software; you can redistribute it and/or modify it under the
7
// terms of the GNU General Public License as published by the
8
// Free Software Foundation; either version 3, or (at your option)
9
// any later version.
10
 
11
// This library is distributed in the hope that it will be useful,
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
// GNU General Public License for more details.
15
 
16
// You should have received a copy of the GNU General Public License along
17
// with this library; see the file COPYING3.  If not see
18
// <http://www.gnu.org/licenses/>.
19
 
20
// IA 64 C++ ABI - 5.1 External Names (a.k.a. Mangling)
21
 
22
#include <testsuite_hooks.h>
23
 
24
// libcwd tests
25
int main()
26
{
27
  using namespace __gnu_test;
28
 
29
/*
30
struct G {
31
  int m(void) const { return 0; }
32
  int n(void) { return 0; }
33
};
34
 
35
struct H {
36
  int m(void) const { return 0; }
37
  int n(void) { return 0; }
38
};
39
 
40
template<typename T>
41
  class what
42
  {
43
  };
44
 
45
template<typename T>
46
  class what2
47
  {
48
  };
49
 
50
void r(int (G::*)(void),
51
       int (G::*)(void) const,
52
       G, // S_
53
       int (H::*)(void), // M1HS0_
54
       int (G::*)(void), // S1_
55
       what<G const>, // what<S2_>
56
  what2<G const>, // what2<S8_>
57
    int (G::*)(void) const // S3_
58
{
59
  G g;
60
  what<G const> y;
61
  what2<G const> y2;
62
  r(&G::n, &G::m, g, &H::n, &G::n, y, y2, &G::m);
63
}
64
*/
65
 
66
  // cplus-dem CORE
67
verify_demangle("_Z1rM1GFivEMS_KFivES_M1HFivES1_4whatIKS_E5what2IS8_ES3_",
68
                "r(int (G::*)(), int (G::*)() const, G, int (H::*)(), int (G::*)(), what<G const>, what2<G const>, int (G::*)() const)");
69
 
70
  return 0;
71
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.