aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/abi/abi-tag1.C
blob: 942929cdd35f456acdd22519af09e0726da9ebe1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// { dg-options "-Wabi-tag" }

// { dg-final { scan-assembler "_Z1fB3barB3fooi" } }
void f(int) __attribute ((abi_tag ("foo","bar")));

struct __attribute ((abi_tag ("bar"))) A { };

struct B: A { };		// { dg-warning "bar. abi tag" }
struct D { A* ap; };		// { dg-warning "bar. abi tag" }

// { dg-final { scan-assembler "_Z1gB3baz1AB3bar" } }
void g(A) __attribute ((abi_tag ("baz")));
void g(A) __attribute ((abi_tag ("baz")));

int main()
{
  f(42);
  g(A());
}