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
40c954b9
Commit
40c954b9
authored
24 years ago
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
From-SVN: r33902
parent
f617b8e2
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
42 additions
and
14 deletions
+42
-14
gcc/testsuite/g++.old-deja/g++.eh/catch3.C
+3
-1
gcc/testsuite/g++.old-deja/g++.eh/catch3p.C
+3
-1
gcc/testsuite/g++.old-deja/g++.eh/catch4.C
+3
-1
gcc/testsuite/g++.old-deja/g++.eh/catch4p.C
+3
-1
gcc/testsuite/g++.old-deja/g++.eh/catch5.C
+3
-1
gcc/testsuite/g++.old-deja/g++.eh/catch5p.C
+3
-1
gcc/testsuite/g++.old-deja/g++.eh/catch6.C
+3
-1
gcc/testsuite/g++.old-deja/g++.eh/catch6p.C
+3
-1
gcc/testsuite/g++.old-deja/g++.eh/catch7.C
+3
-1
gcc/testsuite/g++.old-deja/g++.eh/catch7p.C
+3
-1
gcc/testsuite/g++.old-deja/g++.eh/catch8.C
+3
-1
gcc/testsuite/g++.old-deja/g++.eh/catch8p.C
+3
-1
gcc/testsuite/g++.old-deja/g++.eh/catch9.C
+3
-1
gcc/testsuite/g++.old-deja/g++.eh/catch9p.C
+3
-1
No files found.
gcc/testsuite/g++.old-deja/g++.eh/catch3.C
View file @
40c954b9
// Copyright (C) 1999 Free Software Foundation, Inc.
// Copyright (C) 1999
, 2000
Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 29 Aug 1999 <nathan@acm.org>
// We cannot catch an ambiguous base class. Check with a non-virtual public
...
...
@@ -8,6 +8,8 @@
// D--B--A
// +--C--A
// Special g++ Options: -w
struct
A
{
int
m
;
};
struct
B
:
A
{
int
m
;
};
struct
C
:
A
{
int
m
;
};
...
...
This diff is collapsed.
Click to expand it.
gcc/testsuite/g++.old-deja/g++.eh/catch3p.C
View file @
40c954b9
// Copyright (C) 1999 Free Software Foundation, Inc.
// Copyright (C) 1999
, 2000
Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 29 Aug 1999 <nathan@acm.org>
// We cannot catch an ambiguous base class. Check with a non-virtual
...
...
@@ -8,6 +8,8 @@
// D--B--A
// +--C--A
// Special g++ Options: -w
struct
A
{
int
m
;
virtual
~
A
(){}};
struct
B
:
A
{
int
m
;
};
struct
C
:
A
{
int
m
;
};
...
...
This diff is collapsed.
Click to expand it.
gcc/testsuite/g++.old-deja/g++.eh/catch4.C
View file @
40c954b9
// Copyright (C) 1999 Free Software Foundation, Inc.
// Copyright (C) 1999
, 2000
Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 29 Aug 1999 <nathan@acm.org>
// We cannot catch an ambiguous base class. Check with a virtual public
...
...
@@ -8,6 +8,8 @@
// D--B==A
// +--C==A
// Special g++ Options: -w
struct
A
{
int
m
;
};
struct
B
:
virtual
A
{
int
m
;
};
struct
C
:
virtual
A
{
int
m
;
};
...
...
This diff is collapsed.
Click to expand it.
gcc/testsuite/g++.old-deja/g++.eh/catch4p.C
View file @
40c954b9
// Copyright (C) 1999 Free Software Foundation, Inc.
// Copyright (C) 1999
, 2000
Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 29 Aug 1999 <nathan@acm.org>
// We cannot catch an ambiguous base class. Check with a virtual
...
...
@@ -8,6 +8,8 @@
// D--B==A
// +--C==A
// Special g++ Options: -w
struct
A
{
int
m
;
virtual
~
A
(){}};
struct
B
:
virtual
A
{
int
m
;
};
struct
C
:
virtual
A
{
int
m
;
};
...
...
This diff is collapsed.
Click to expand it.
gcc/testsuite/g++.old-deja/g++.eh/catch5.C
View file @
40c954b9
// Copyright (C) 1999 Free Software Foundation, Inc.
// Copyright (C) 1999
, 2000
Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 29 Aug 1999 <nathan@acm.org>
// We cannot catch an ambiguous base class.
...
...
@@ -8,6 +8,8 @@
// +--C==A
// +--AA-A
// Special g++ Options: -w
struct
A
{
int
m
;
};
struct
B
:
virtual
A
{
int
m
;
};
struct
C
:
virtual
A
{
int
m
;
};
...
...
This diff is collapsed.
Click to expand it.
gcc/testsuite/g++.old-deja/g++.eh/catch5p.C
View file @
40c954b9
// Copyright (C) 1999 Free Software Foundation, Inc.
// Copyright (C) 1999
, 2000
Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 29 Aug 1999 <nathan@acm.org>
// We cannot catch an ambiguous base class.
...
...
@@ -8,6 +8,8 @@
// +--C==A
// +--AA-A
// Special g++ Options: -w
struct
A
{
int
m
;
virtual
~
A
(){}};
struct
B
:
virtual
A
{
int
m
;
};
struct
C
:
virtual
A
{
int
m
;
};
...
...
This diff is collapsed.
Click to expand it.
gcc/testsuite/g++.old-deja/g++.eh/catch6.C
View file @
40c954b9
// Copyright (C) 1999 Free Software Foundation, Inc.
// Copyright (C) 1999
, 2000
Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 29 Aug 1999 <nathan@acm.org>
// We cannot catch an ambiguous base class.
...
...
@@ -8,6 +8,8 @@
// +--C==A
// +--AA-A
// Special g++ Options: -w
struct
A
{
int
m
;
};
struct
B
:
virtual
A
{
int
m
;
};
struct
C
:
virtual
A
{
int
m
;
};
...
...
This diff is collapsed.
Click to expand it.
gcc/testsuite/g++.old-deja/g++.eh/catch6p.C
View file @
40c954b9
// Copyright (C) 1999 Free Software Foundation, Inc.
// Copyright (C) 1999
, 2000
Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 29 Aug 1999 <nathan@acm.org>
// We cannot catch an ambiguous base class.
...
...
@@ -8,6 +8,8 @@
// +--C==A
// +--AA-A
// Special g++ Options: -w
struct
A
{
int
m
;
virtual
~
A
(){}};
struct
B
:
virtual
A
{
int
m
;
};
struct
C
:
virtual
A
{
int
m
;
};
...
...
This diff is collapsed.
Click to expand it.
gcc/testsuite/g++.old-deja/g++.eh/catch7.C
View file @
40c954b9
// Copyright (C) 1999 Free Software Foundation, Inc.
// Copyright (C) 1999
, 2000
Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 29 Aug 1999 <nathan@acm.org>
// We cannot catch an ambiguous base class.
...
...
@@ -9,6 +9,8 @@
// +--C--A
// +--E--A
// Special g++ Options: -w
struct
A
{
int
m
;
};
struct
B
:
A
{
int
m
;
};
struct
C
:
A
{
int
m
;
};
...
...
This diff is collapsed.
Click to expand it.
gcc/testsuite/g++.old-deja/g++.eh/catch7p.C
View file @
40c954b9
// Copyright (C) 1999 Free Software Foundation, Inc.
// Copyright (C) 1999
, 2000
Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 29 Aug 1999 <nathan@acm.org>
// We cannot catch an ambiguous base class.
...
...
@@ -9,6 +9,8 @@
// +--C--A
// +--E--A
// Special g++ Options: -w
struct
A
{
int
m
;
virtual
~
A
(){}};
struct
B
:
A
{
int
m
;
};
struct
C
:
A
{
int
m
;
};
...
...
This diff is collapsed.
Click to expand it.
gcc/testsuite/g++.old-deja/g++.eh/catch8.C
View file @
40c954b9
// Copyright (C) 1999 Free Software Foundation, Inc.
// Copyright (C) 1999
, 2000
Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 6 Jun 1999 <nathan@acm.org>
// We cannot catch an ambiguous base class.
...
...
@@ -7,6 +7,8 @@
// D--B--A
// +--C<<A
// Special g++ Options: -w
struct
A
{
int
m
;
};
struct
B
:
A
{
int
m
;
};
struct
C
:
private
A
{
int
m
;
};
...
...
This diff is collapsed.
Click to expand it.
gcc/testsuite/g++.old-deja/g++.eh/catch8p.C
View file @
40c954b9
// Copyright (C) 1999 Free Software Foundation, Inc.
// Copyright (C) 1999
, 2000
Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 6 Jun 1999 <nathan@acm.org>
// We cannot catch an ambiguous base class.
...
...
@@ -7,6 +7,8 @@
// D--B--A
// +--C<<A
// Special g++ Options: -w
struct
A
{
int
m
;
virtual
~
A
(){}};
struct
B
:
A
{
int
m
;
};
struct
C
:
private
A
{
int
m
;
};
...
...
This diff is collapsed.
Click to expand it.
gcc/testsuite/g++.old-deja/g++.eh/catch9.C
View file @
40c954b9
// Copyright (C) 1999 Free Software Foundation, Inc.
// Copyright (C) 1999
, 2000
Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 29 Aug 1999 <nathan@acm.org>
// We cannot catch an ambiguous base class.
...
...
@@ -7,6 +7,8 @@
// D==B--A
// +==C--A
// Special g++ Options: -w
struct
A
{
int
m
;
};
struct
B
:
A
{
int
m
;
};
struct
C
:
A
{
int
m
;
};
...
...
This diff is collapsed.
Click to expand it.
gcc/testsuite/g++.old-deja/g++.eh/catch9p.C
View file @
40c954b9
// Copyright (C) 1999 Free Software Foundation, Inc.
// Copyright (C) 1999
, 2000
Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 29 Aug 1999 <nathan@acm.org>
// We cannot catch an ambiguous base class.
...
...
@@ -7,6 +7,8 @@
// D==B--A
// +==C--A
// Special g++ Options: -w
struct
A
{
int
m
;
virtual
~
A
(){}};
struct
B
:
A
{
int
m
;
};
struct
C
:
A
{
int
m
;
};
...
...
This diff is collapsed.
Click to expand it.
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