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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc4/] [gcc/] [testsuite/] [g++.old-deja/] [g++.pt/] [cast2.C] - Rev 519

Compare with Previous | Blame | View Log

// { dg-do assemble  }

// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 10 Jan 2001 <nathan@codesourcery.com>

// Bug 1588. We ICE'd on reparsing an absdcl as a cast inside a template
// function.

class A {
public:
 template <class T> void f(void *CLUTp);
};

template <class T> void A::f(void *CLUTp)
{
    void *CLUT;

    CLUT = (unsigned char [3][256])CLUTp; // { dg-error "" } cast to array

    return;
}


int main()
{
        A myobj;
        unsigned char t[3][256];

        myobj.f<unsigned char>(t);
                
        return 0;
}

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.