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
d5698b07
Commit
d5698b07
authored
Oct 03, 1998
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
new
From-SVN: r22801
parent
5eea678f
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
127 additions
and
0 deletions
+127
-0
gcc/testsuite/g++.old-deja/g++.mike/p16146.C
+89
-0
gcc/testsuite/g++.old-deja/g++.ns/using9.C
+24
-0
gcc/testsuite/g++.old-deja/g++.other/linkage1.C
+14
-0
No files found.
gcc/testsuite/g++.old-deja/g++.mike/p16146.C
0 → 100644
View file @
d5698b07
// prms-id: 16146
extern
"C"
int
printf
(
const
char
*
,
...);
class
myFoundation
{
protected
:
myFoundation
()
{
count
=
0
;
};
virtual
~
myFoundation
()
{};
public
:
void
addRef
()
{
++
count
;
}
void
removeRef
()
{
if
(
count
>
0
)
--
count
;
}
private
:
long
count
;
};
class
firstIntermediate
:
virtual
public
myFoundation
{
public
:
firstIntermediate
()
{};
~
firstIntermediate
()
{};
void
bar
()
{
printf
(
"Bar
\n
"
);
}
};
class
firstBase
:
public
firstIntermediate
{
public
:
firstBase
()
{};
~
firstBase
()
{};
virtual
void
g
()
{};
};
class
secondIntermediate
:
virtual
public
myFoundation
{
public
:
secondIntermediate
()
{};
~
secondIntermediate
()
{};
virtual
void
h
()
{};
};
class
secondBase
:
public
secondIntermediate
{
public
:
secondBase
()
{};
~
secondBase
()
{};
virtual
void
h
()
{};
};
class
typeInterface
:
virtual
public
firstBase
{
public
:
typeInterface
()
{};
~
typeInterface
()
{};
virtual
void
i
()
{};
};
class
classServices
:
virtual
public
firstBase
,
public
secondBase
{
public
:
classServices
()
{};
~
classServices
()
{};
virtual
void
j
()
{};
};
class
classImplementation
:
public
typeInterface
,
public
classServices
{
public
:
classImplementation
()
{};
~
classImplementation
()
{};
void
g
()
{};
void
h
()
{};
void
i
()
{};
void
j
()
{};
};
main
()
{
firstBase
*
fbp
=
new
classImplementation
;
classImplementation
*
cip
=
dynamic_cast
<
classImplementation
*>
(
fbp
);
cip
->
addRef
();
myFoundation
*
mfp
=
cip
;
}
gcc/testsuite/g++.old-deja/g++.ns/using9.C
0 → 100644
View file @
d5698b07
// Test for proper merging of functions from multiple using directives.
// Build don't link:
namespace
standard
{
void
print
(
int
)
{};
void
dump
(
int
)
{};
}
namespace
A
{
using
standard
::
print
;
}
namespace
B
{
using
namespace
standard
;
}
namespace
User
{
using
namespace
standard
;
using
namespace
A
;
void
test
()
{
print
(
1
);
}
// egcs-1.1: call of overloaded `print (int)' is ambiguous
}
namespace
User2
{
using
namespace
standard
;
using
namespace
B
;
void
test
()
{
print
(
1
);
}
// egcs has no problems here
}
gcc/testsuite/g++.old-deja/g++.other/linkage1.C
0 → 100644
View file @
d5698b07
typedef
struct
{
int
i
;
}
*
p
;
void
f
(
p
)
{
}
// ERROR - function uses anonymous type
p
q
;
int
main
()
{
extern
p
j
;
struct
A
{
int
j
;
};
extern
A
a
;
// ERROR - extern uses local type
extern
void
f
(
A
);
// ERROR - extern uses local type
}
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