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.0rc1/] [gcc/] [testsuite/] [g++.old-deja/] [g++.benjamin/] [typedef03.C] - Blame information for rev 338

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 305 jeremybenn
// { dg-do assemble  }
2
//980526 bkoz
3
// reduced testcase for 980511 brendan qt bug
4
 
5
 
6
class QTextStream
7
{
8
public:
9
    QTextStream();
10
    virtual ~QTextStream();
11
 
12
    enum {
13
        skipws    = 0x0001,
14
        left      = 0x0002,
15
        right     = 0x0004,
16
        internal  = 0x0008,
17
        bin       = 0x0010,
18
        oct       = 0x0020,
19
        dec       = 0x0040,
20
        hex       = 0x0080,
21
        showbase  = 0x0100,
22
        showpoint = 0x0200,
23
        uppercase = 0x0400,
24
        showpos   = 0x0800,
25
        scientific= 0x1000,
26
        fixed     = 0x2000
27
    };
28
 
29
    static const int basefield;
30
    static const int adjustfield;
31
};
32
 
33
typedef QTextStream QTS;
34
const int QTS::basefield   = (QTS::bin | QTS::dec | QTS::hex) ;
35
const int QTS::adjustfield = QTS::left | QTS::right | QTS::internal;
36
#if 0
37
#define QTS QTextStream
38
const int QTS::basefield   = (QTS::bin | QTS::dec | QTS::hex) ;
39
const int QTS::adjustfield = QTS::left | QTS::right | QTS::internal;
40
#endif
41
 
42
 
43
 
44
 

powered by: WebSVN 2.1.0

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