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
b8b0126f
Commit
b8b0126f
authored
Mar 24, 1999
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
new
From-SVN: r25968
parent
5b163de4
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++.other/conv6.C
+28
-0
gcc/testsuite/g++.old-deja/g++.other/lookup11.C
+12
-0
gcc/testsuite/g++.old-deja/g++.other/ptrmem4.C
+12
-0
No files found.
gcc/testsuite/g++.old-deja/g++.other/conv6.C
0 → 100644
View file @
b8b0126f
// Test for composite pointer types, as defined in [expr.rel],
// and common pointer to member types, as defined in [expr.eq].
struct
A
{
int
i
;
};
struct
B
:
public
A
{
};
int
main
()
{
B
b
;
// The composite type is `A const *'
A
*
ap
=
&
b
;
const
B
*
bp
=
&
b
;
if
(
ap
!=
bp
)
// gets bogus error - distinct types XFAIL *-*-*
return
1
;
// The composite type is `B const *const *'
B
*
const
*
p
=
0
;
B
const
*
*
q
=
0
;
if
(
p
!=
q
)
// gets bogus error - distinct types XFAIL *-*-*
return
1
;
// The common type is `int const B::*'
const
int
A
::*
apm
=
&
A
::
i
;
int
B
::*
bpm
=
&
A
::
i
;
if
(
apm
!=
bpm
)
// gets bogus error - distinct types XFAIL *-*-*
return
1
;
}
gcc/testsuite/g++.old-deja/g++.other/lookup11.C
0 → 100644
View file @
b8b0126f
// Build don't link:
namespace
A
{
int
i
;
}
using
namespace
A
;
namespace
B
{
int
i
;
}
using
namespace
B
;
int
i
;
gcc/testsuite/g++.old-deja/g++.other/ptrmem4.C
0 → 100644
View file @
b8b0126f
// Test to make sure g++ can handle target types that aren't identical
// with pointers to members.
struct
A
{
int
i
;
};
struct
B
:
public
A
{
};
int
main
()
{
int
A
::*
p
=
&
A
::
i
;
const
int
B
::*
q
=
&
A
::
i
;
return
p
!=
q
;
}
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