Commit 440d0518 by Richard Sandiford Committed by Richard Sandiford

* g++.dg/abi/mangle6.C: New test.

From-SVN: r50744
parent 049e6879
2002-02-13 Richard Sandiford <rsandifo@redhat.com>
* g++.dg/abi/mangle6.C: New test.
2002-03-13 Jakub Jelinek <jakub@redhat.com>
* gcc.c-torture/compile/20020309-2.c: New test.
......
/* Check that __int128 types are mangled. */
/* { dg-do compile { target mips64*-*-* } } */
typedef int int128 __attribute__ ((mode(TI)));
typedef unsigned int uint128 __attribute__ ((mode(TI)));
struct S
{
int128 i;
int128 func1 (int128) const { return i; }
uint128 func2 (uint128) const { return i; }
};
int128 (S::*ptr1) (int128) const = &S::func1;
uint128 (S::*ptr2) (uint128) const = &S::func2;
/* { dg-final { scan-assembler _ZNK1S5func1En } } */
/* { dg-final { scan-assembler _ZNK1S5func2Eo } } */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment