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
88fa5197
Commit
88fa5197
authored
Jun 11, 2000
by
Mark Mitchell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert last patch
From-SVN: r34486
parent
7775bd6b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
4 deletions
+11
-4
gcc/testsuite/g++.old-deja/g++.ext/pretty2.C
+2
-2
gcc/testsuite/g++.old-deja/g++.other/decl4.C
+1
-1
gcc/testsuite/g++.old-deja/g++.other/static8.C
+8
-1
No files found.
gcc/testsuite/g++.old-deja/g++.ext/pretty2.C
View file @
88fa5197
// Copyright (C) 1999
, 2000
Free Software Foundation, Inc.
// Copyright (C) 1999 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 21 Nov 1999 <nathan@acm.org>
// make sure __FUNCTION__ and __PRETTY_FUNCTION__ work in member functions
...
...
@@ -67,7 +67,7 @@ X::operator int ()
printf
(
"__FUNCTION__ %s
\n
"
,
function
);
printf
(
"__PRETTY_FUNCTION__ %s
\n
"
,
pretty
);
if
(
strcmp
(
function
,
"
operator
i"
))
if
(
strcmp
(
function
,
"
__op
i"
))
bad
=
true
;
if
(
strcmp
(
pretty
,
"X::operator int ()"
))
bad
=
true
;
...
...
gcc/testsuite/g++.old-deja/g++.other/decl4.C
View file @
88fa5197
...
...
@@ -4,4 +4,4 @@
// Simplified for testsuite by Alexandre Oliva
struct
foo
{
operator
long
double
();
};
int
bar
(
int
__opr
);
// gets bogus error
int
bar
(
int
__opr
);
// gets bogus error
- XFAIL *-*-*
gcc/testsuite/g++.old-deja/g++.other/static8.C
View file @
88fa5197
// Build don't link:
// Special g++ Options: -fno-squangle
// Origin: Mark Mitchell <mark@codesourcery.com>
#if (!defined (__GXX_ABI_VERSION) || __GXX_ABI_VERSION < 100)
#define NAME(OLD, NEW) OLD
#else
#define NAME(OLD, NEW) NEW
#endif
/* (!defined (__GXX_ABI_VERSION) || __GXX_ABI_VERSION < 100) */
static
unsigned
int
strlen
(
const
char
*
)
{}
// ERROR - previous declaration
int
_Z6strlenPKc
=
0
;
// ERROR - duplicate declaration
int
NAME
(
strlen__FPCc
,
_Z6strlenPKc
)
=
0
;
// ERROR - duplicate declaration
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