Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
08a209d4
Commit
08a209d4
authored
Nov 23, 1998
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
new
From-SVN: r23823
parent
37b6eb34
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
60 additions
and
0 deletions
+60
-0
gcc/testsuite/g++.old-deja/g++.other/init11.C
+38
-0
gcc/testsuite/g++.old-deja/g++.other/overload7.C
+22
-0
No files found.
gcc/testsuite/g++.old-deja/g++.other/init11.C
0 → 100644
View file @
08a209d4
// Check that elements for which no explicit initializer was given are
// default-initialized properly.
extern
"C"
int
printf
(
const
char
*
,
...);
struct
A
{
int
i
;
A
()
:
i
(
42
)
{
}
A
(
int
j
)
:
i
(
j
)
{
}
};
A
ar
[
4
]
=
{
1
,
2
};
struct
B
{
A
a1
,
a2
,
a3
,
a4
;
};
B
b
=
{
1
,
2
};
struct
C
{
A
ar
[
4
];
};
C
c
=
{
1
,
2
};
int
main
()
{
printf
(
"%d %d %d %d
\n
%d %d %d %d
\n
%d %d %d %d
\n
"
,
ar
[
0
].
i
,
ar
[
1
].
i
,
ar
[
2
].
i
,
ar
[
3
].
i
,
b
.
a1
.
i
,
b
.
a2
.
i
,
b
.
a3
.
i
,
b
.
a4
.
i
,
c
.
ar
[
1
-
1
].
i
,
c
.
ar
[
2
-
1
].
i
,
c
.
ar
[
3
-
1
].
i
,
c
.
ar
[
4
-
1
].
i
);
return
(
b
.
a4
.
i
!=
42
||
c
.
ar
[
3
].
i
!=
42
);
}
gcc/testsuite/g++.old-deja/g++.other/overload7.C
0 → 100644
View file @
08a209d4
// Check that object call works when there are multiple conversion ops
// returning the same type.
typedef
int
(
*
pfn
)();
int
zero
()
{
return
0
;
}
int
one
()
{
return
1
;
}
int
two
()
{
return
2
;
}
struct
A
{
A
()
{
}
operator
pfn
()
{
return
one
;
}
operator
pfn
()
const
{
return
zero
;
}
operator
pfn
()
volatile
{
return
two
;
}
};
int
main
()
{
const
A
a
;
return
a
();
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment