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
41c3f1e1
Commit
41c3f1e1
authored
May 31, 1998
by
Robert Lipe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Additional changes from Martin von Loewis.
From-SVN: r20153
parent
655ccec1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
5 deletions
+8
-5
gcc/testsuite/g++.old-deja/g++.robertl/eb17.C
+2
-0
gcc/testsuite/g++.old-deja/g++.robertl/eb32.C
+1
-1
gcc/testsuite/g++.old-deja/g++.robertl/eb50.C
+2
-2
gcc/testsuite/g++.old-deja/g++.robertl/eb76.C
+2
-1
gcc/testsuite/g++.old-deja/g++.robertl/eb79.C
+1
-1
No files found.
gcc/testsuite/g++.old-deja/g++.robertl/eb17.C
View file @
41c3f1e1
// excess errors test - XFAIL
// covariant return types in are currently not support for complex inheritance
#include <stdio.h>
class
A
{
...
...
gcc/testsuite/g++.old-deja/g++.robertl/eb32.C
View file @
41c3f1e1
...
...
@@ -6,7 +6,7 @@ public:
void
A
::
malloc
(
unsigned
int
)
{}
int
foo
()
{
void
foo
()
{
A
a
;
a
.
malloc
(
3
);
// <-- line 10
}
gcc/testsuite/g++.old-deja/g++.robertl/eb50.C
View file @
41c3f1e1
...
...
@@ -9,8 +9,8 @@ int main()
{
try
{
f
(
0
,
0
);
return
0
;
}
catch
(
foo
x
)
{
return
1
;
}
catch
(
foo
x
)
{
return
0
;
}
}
gcc/testsuite/g++.old-deja/g++.robertl/eb76.C
View file @
41c3f1e1
//Build don't link:
// from include/g++/stl_relops.h
template
<
class
T
>
inline
bool
operator
!=
(
const
T
&
x
,
const
T
&
y
)
{
...
...
@@ -6,7 +7,7 @@ inline bool operator!=(const T& x, const T& y) {
enum
T
{
V1
,
};
};
// ERROR -
struct
X
{
T
t
:
31
;
...
...
gcc/testsuite/g++.old-deja/g++.robertl/eb79.C
View file @
41c3f1e1
...
...
@@ -8,7 +8,7 @@ T max(T a, T b)
}
// Prototypes (enable one or the other)
double
max
<>
(
double
,
double
);
double
max
<>
(
double
,
double
);
// ERROR - bogus code
// int max(int, int);
int
main
()
...
...
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