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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [lto/] [20110311-1_0.C] - Rev 749

Go to most recent revision | Compare with Previous | Blame | View Log

/* { dg-lto-do link } */
/* { dg-extra-ld-options "-r -nostdlib" } */

struct NullType {};

template <class T, class U>
struct TList
{
    typedef T Head;
    typedef U Tail;
};

template <class T>
struct TListLength {};

template <class T, class U>
struct TListLength<TList<T,U> >
{
    enum
    {
        Ret = 1 + TListLength<U>::Ret
    };
};

template <>
struct TListLength<NullType>
{
    enum
    {
        Ret = 0
    };
};

template <class Moves>
class DDQMC
{
public:
    int* moves[TListLength<Moves>::Ret];
    inline DDQMC();
private:
};

template <class Moves>
DDQMC<Moves>::DDQMC()
{
}

int main()
{
    typedef DDQMC< TList<float, TList<int, NullType> > > mytype;
}

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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