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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [torture/] [pr42773.C] - Rev 749

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

// { dg-do compile }
// { dg-options "-fno-exceptions" }

typedef unsigned int uint;
struct QShared {
    bool deref() {
        return !--count;
    }
    uint count;
};
template <class T> class QValueListNode {
public:
    QValueListNode<T>* next;
    QValueListNode<T>* prev;
};
template <class T> class QValueListPrivate : public QShared {
public:
    typedef QValueListNode<T> Node;
    typedef QValueListNode<T>* NodePtr;
    QValueListPrivate();
    void derefAndDelete()     {
        if ( deref() )      delete this;
    }
    ~QValueListPrivate();
    NodePtr node;
};
template <class T>  QValueListPrivate<T>::QValueListPrivate() {
    node = new Node;
    node->next = node->prev = node;
}
template <class T>  QValueListPrivate<T>::~QValueListPrivate() {
    NodePtr p = node->next;
    while( p != node ) {
        NodePtr x = p->next;
        delete p;
        p = x;
    }
}
template <class T> class QValueList {
public:
    QValueList() {
        sh = new QValueListPrivate<T>;
    }
    ~QValueList() {
        sh->derefAndDelete();
    }
    QValueListPrivate<T>* sh;
};
class Cell {
    QValueList<Cell*> obscuringCells() const;
};
QValueList<Cell*> Cell::obscuringCells() const {
    QValueList<Cell*> empty;
}

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.