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
2879ca2a
Commit
2879ca2a
authored
May 29, 1998
by
Robert Lipe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pick up a few scraggling files that missed my first add/commit cycle.
From-SVN: r20138
parent
35c68eb5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
52 additions
and
0 deletions
+52
-0
gcc/testsuite/g++.old-deja/g++.robertl/ebnull-cast.C
+18
-0
gcc/testsuite/g++.old-deja/g++.robertl/ebnull-oldcast.C
+17
-0
gcc/testsuite/g++.old-deja/g++.robertl/ebnull.C
+17
-0
No files found.
gcc/testsuite/g++.old-deja/g++.robertl/ebnull-cast.C
0 → 100644
View file @
2879ca2a
class
null
{
null
(
null
const
&
);
void
operator
&
();
public
:
null
()
{}
template
<
typename
T
>
operator
T
*
()
const
{
return
0
;
}
}
const
null
;
int
main
()
{
int
*
p
=
static_cast
<
int
*>
(
null
);
return
0
;
}
gcc/testsuite/g++.old-deja/g++.robertl/ebnull-oldcast.C
0 → 100644
View file @
2879ca2a
class
null
{
null
(
null
const
&
);
void
operator
&
();
public
:
null
()
{}
template
<
typename
T
>
operator
T
*
()
const
{
return
0
;
}
}
const
null
;
int
main
()
{
int
*
p
=
(
int
*
)
null
;
return
0
;
}
gcc/testsuite/g++.old-deja/g++.robertl/ebnull.C
0 → 100644
View file @
2879ca2a
class
null
{
null
(
null
const
&
);
void
operator
&
();
public
:
null
()
{}
template
<
typename
T
>
operator
T
*
()
const
{
return
0
;
}
}
const
null
;
int
main
()
{
int
*
p
=
null
;
return
0
;
}
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