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
3ae273dc
Commit
3ae273dc
authored
Oct 25, 1998
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
up
From-SVN: r23345
parent
aaa9d731
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
10 deletions
+17
-10
gcc/testsuite/g++.old-deja/g++.ext/typeof1.C
+2
-4
gcc/testsuite/g++.old-deja/g++.law/arg11.C
+1
-2
gcc/testsuite/g++.old-deja/g++.law/missed-error1.C
+12
-2
gcc/testsuite/g++.old-deja/g++.law/vtable1.C
+2
-2
No files found.
gcc/testsuite/g++.old-deja/g++.ext/typeof1.C
View file @
3ae273dc
// Build don't link:
// crash test - XFAIL *-*-*
struct
inttest
{
int
elem
[
1
];
};
...
...
@@ -9,8 +7,8 @@ struct inttest {
template
<
class
T
>
void
F
(
T
x
)
{
typedef
__typeof
__
(
x
.
elem
[
0
])
dummy
;
i
=
1
;
typedef
__typeof
(
x
.
elem
[
0
])
dummy
;
dummy
i
=
1
;
}
int
main
()
{
...
...
gcc/testsuite/g++.old-deja/g++.law/arg11.C
View file @
3ae273dc
// Build don't link:
// GROUPS passed arg-matching
// excess errors test - XFAIL *-*-*
// From: gustavo@cpqd.br (Gustavo Chaves)
// Date: Wed, 25 May 94 09:38:00 EST
// Subject: problem with user defined conversions in initialization
...
...
@@ -10,7 +9,7 @@ struct String { String(const char*); };
struct
Ack
{
Ack
(
String
);
};
struct
S
{
void
method
(
Ack
);
};
struct
S
{
void
method
(
Ack
);
};
// ERROR - referenced below
void
function
(
Ack
);
...
...
gcc/testsuite/g++.old-deja/g++.law/missed-error1.C
View file @
3ae273dc
...
...
@@ -6,6 +6,16 @@
// Subject: Re: g++ ignores language context of function pointers
// Message-ID: <9302021238.AA01513@Achates.MIT.EDU>
typedef
void
(
*
pfv2
)(
double
,
double
);
extern
"C"
{
typedef
void
(
*
pfv3
)(
double
,
double
);
}
// ERROR - , XFAIL *-*-*
typedef
void
(
*
pfv
)(
);
void
f
();
extern
"C"
{
typedef
void
(
*
pcfv
)(
void
);
void
cf
(
void
);
}
pfv
p
=
f
;
pfv
p2
=
cf
;
// ERROR - mismatch XFAIL *-*-*
pcfv
p3
=
f
;
// ERROR - mismatch XFAIL *-*-*
pcfv
p4
=
cf
;
gcc/testsuite/g++.old-deja/g++.law/vtable1.C
View file @
3ae273dc
// Build don't link:
// Build don't link:
// Special g++ Options: -w
// GROUPS passed vtable
// excess errors test - XFAIL *-*-*
// vtable file
// From: mrs@cygnus.com (Mike Stump)
// Date: Wed, 20 Apr 1994 17:46:11 -0700
...
...
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