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
4699894f
Commit
4699894f
authored
Nov 13, 1997
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lose implicit int
From-SVN: r16449
parent
5a6b3365
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
19 additions
and
34 deletions
+19
-34
gcc/testsuite/g++.old-deja/g++.brendan/crash49.C
+2
-2
gcc/testsuite/g++.old-deja/g++.bugs/900519_08.C
+0
-15
gcc/testsuite/g++.old-deja/g++.jason/crash2.C
+1
-1
gcc/testsuite/g++.old-deja/g++.jason/opover.C
+1
-1
gcc/testsuite/g++.old-deja/g++.jason/static1.C
+1
-1
gcc/testsuite/g++.old-deja/g++.law/visibility13.C
+1
-1
gcc/testsuite/g++.old-deja/g++.mike/misc13.C
+1
-1
gcc/testsuite/g++.old-deja/g++.mike/misc14.C
+1
-1
gcc/testsuite/g++.old-deja/g++.mike/net10.C
+1
-1
gcc/testsuite/g++.old-deja/g++.mike/net9.C
+1
-1
gcc/testsuite/g++.old-deja/g++.mike/p1567.C
+1
-1
gcc/testsuite/g++.old-deja/g++.mike/p1862.C
+1
-1
gcc/testsuite/g++.old-deja/g++.mike/p1989.C
+7
-7
No files found.
gcc/testsuite/g++.old-deja/g++.brendan/crash49.C
View file @
4699894f
...
...
@@ -2,8 +2,8 @@
// GROUPS passed old-abort
#include<iostream.h>
const
/* int */
keys
=
10
;
const
/* int */
key
[
keys
]
=
{
6
,
key
[
1
],
2
,
keys
,
1
,
7
,
6
,
key
[
2
],
key
[
8
]};
const
int
keys
=
10
;
const
int
key
[
keys
]
=
{
6
,
key
[
1
],
2
,
keys
,
1
,
7
,
6
,
key
[
2
],
key
[
8
]};
void
main
()
{
// ERROR - return type for main
...
...
gcc/testsuite/g++.old-deja/g++.bugs/900519_08.C
deleted
100644 → 0
View file @
5a6b3365
// g++ 1.37.1 bug 900519_08
// g++ fails to accept the following legal syntax for an invocation of the
// new operator, in which the type specifier is implicitly "int".
// cfront 2.0 passes this test.
// keywords: syntax, operator new, type specifier, type qualifier
void
test
()
{
new
const
/* int */
(
1
);
// gets bogus error
}
int
main
()
{
return
0
;
}
gcc/testsuite/g++.old-deja/g++.jason/crash2.C
View file @
4699894f
...
...
@@ -3,7 +3,7 @@
// Build don't link:
class
PhysicalPageId
{
const
maximum_block_numbers
=
2
;
const
int
maximum_block_numbers
=
2
;
long
block_number
[
maximum_block_numbers
];
};
...
...
gcc/testsuite/g++.old-deja/g++.jason/opover.C
View file @
4699894f
...
...
@@ -7,7 +7,7 @@ struct A {
};
struct
B
{
friend
operator
==
(
B
,
int
);
friend
int
operator
==
(
B
,
int
);
};
int
foo
(
A
&
a
)
{
...
...
gcc/testsuite/g++.old-deja/g++.jason/static1.C
View file @
4699894f
// PRMS id: 6863
extern
"C"
printf
(
const
char
*
,
...);
extern
"C"
int
printf
(
const
char
*
,
...);
extern
"C"
void
abort
();
enum
ENUM
{
E1
=
0
,
E2
};
...
...
gcc/testsuite/g++.old-deja/g++.law/visibility13.C
View file @
4699894f
...
...
@@ -37,7 +37,7 @@ ostream& operator<<( ostream& os, Array<Type>& ar )
template
<
class
Type
>
void
Array
<
Type
>::
print
(
ostream
&
os
)
{
const
lineLength
=
12
;
const
int
lineLength
=
12
;
os
<<
"( "
<<
size
<<
" )< "
;
for
(
int
ix
=
0
;
ix
<
size
;
++
ix
)
{
...
...
gcc/testsuite/g++.old-deja/g++.mike/misc13.C
View file @
4699894f
// GROUPS passed vtable
extern
"C"
printf
(...);
extern
"C"
int
printf
(...);
enum
{
vf_request
,
vf_event
}
want
;
int
errs
=
0
;
...
...
gcc/testsuite/g++.old-deja/g++.mike/misc14.C
View file @
4699894f
// GROUPS passed
extern
"C"
printf
(...);
extern
"C"
int
printf
(...);
extern
"C"
void
exit
(
int
);
class
A
{
...
...
gcc/testsuite/g++.old-deja/g++.mike/net10.C
View file @
4699894f
// Build don't link:
// Special g++ Options: -pedantic-errors
const
ci
=
10
,
*
pc
=
&
ci
,
*
const
cpc
=
pc
,
**
ppc
;
const
int
ci
=
10
,
*
pc
=
&
ci
,
*
const
cpc
=
pc
,
**
ppc
;
int
i
,
*
p
,
*
const
cp
=
&
i
;
main
()
...
...
gcc/testsuite/g++.old-deja/g++.mike/net9.C
View file @
4699894f
// Build don't link:
// Special g++ Options: -pedantic-errors
const
ci
=
10
,
*
pc
=
&
ci
,
*
const
cpc
=
pc
,
**
ppc
;
const
int
ci
=
10
,
*
pc
=
&
ci
,
*
const
cpc
=
pc
,
**
ppc
;
int
i
,
*
p
,
*
const
cp
=
&
i
;
main
()
...
...
gcc/testsuite/g++.old-deja/g++.mike/p1567.C
View file @
4699894f
// GROUPS passed vtable
extern
"C"
printf
(
const
char
*
,
...);
extern
"C"
int
printf
(
const
char
*
,
...);
extern
"C"
void
exit
(
int
);
class
A
{
...
...
gcc/testsuite/g++.old-deja/g++.mike/p1862.C
View file @
4699894f
// GROUPS vtable
extern
"C"
printf
(
const
char
*
,
...);
extern
"C"
int
printf
(
const
char
*
,
...);
class
A
{
...
...
gcc/testsuite/g++.old-deja/g++.mike/p1989.C
View file @
4699894f
...
...
@@ -472,14 +472,14 @@ Graph<T>::V1(Pix vx, Pix x) const
class
STRLIdentifier
;
extern
x
(
List_DL
<
STRLIdentifier
*>
);
extern
x
(
List_DLS
<
STRLIdentifier
*>
);
extern
int
x
(
List_DL
<
STRLIdentifier
*>
);
extern
int
x
(
List_DLS
<
STRLIdentifier
*>
);
extern
x
(
Set
<
STRLIdentifier
*>
);
extern
x
(
Set_DL
<
STRLIdentifier
*>
);
extern
x
(
Set_DLp
<
STRLIdentifier
*>
);
extern
int
x
(
Set
<
STRLIdentifier
*>
);
extern
int
x
(
Set_DL
<
STRLIdentifier
*>
);
extern
int
x
(
Set_DLp
<
STRLIdentifier
*>
);
extern
x
(
Graph
<
STRLIdentifier
*>
);
extern
int
x
(
Graph
<
STRLIdentifier
*>
);
class
STRLIdentifier
{
char
buf
[
10
];
...
...
@@ -488,7 +488,7 @@ class STRLIdentifier {
extern
int
operator
==
(
vertex
<
STRLIdentifier
*>&
,
vertex
<
STRLIdentifier
*>&
);
// ERROR - const subversion
extern
int
operator
==
(
STRLIdentifier
&
,
STRLIdentifier
&
);
// ERROR - fn ref in err msg
extern
x
(
List_DLSp
<
STRLIdentifier
*>
);
extern
int
x
(
List_DLSp
<
STRLIdentifier
*>
);
template
class
Graph
<
STRLIdentifier
*>
;
template
class
List_DLS
<
vertex
<
STRLIdentifier
*>
>
;
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