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
7d7e539c
Commit
7d7e539c
authored
Mar 20, 2002
by
Jakub Jelinek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mangle11.C was duplicate of mangle3.C
From-SVN: r51077
parent
ea122333
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
42 deletions
+0
-42
gcc/testsuite/ChangeLog
+0
-1
gcc/testsuite/g++.old-deja/g++.other/mangle11.C
+0
-41
No files found.
gcc/testsuite/ChangeLog
View file @
7d7e539c
...
...
@@ -668,7 +668,6 @@ Thu Mar 7 10:05:31 2002 Jeffrey A Law (law@redhat.com)
* g++.old-deja/g++.other/inline23.C: New test.
* g++.old-deja/g++.eh/ia64-1.C: New test.
* g++.old-deja/g++.other/dwarf2-1.C: New test.
* g++.old-deja/g++.other/mangle11.C: New test.
* g++.old-deja/g++.other/reload1.C: New test.
* g++.old-deja/g++.other/static20.C: New test.
* g++.old-deja/g++.other/local-alloc1.C: New test.
...
...
gcc/testsuite/g++.old-deja/g++.other/mangle11.C
deleted
100644 → 0
View file @
ea122333
struct
foo
{
static
int
bar
()
{
int
i
;
static
int
baz
=
1
;
{
static
int
baz
=
2
;
i
=
baz
++
;
}
{
struct
baz
{
static
int
m
()
{
static
int
n
;
return
n
+=
10
;
}
};
baz
a
;
i
+=
a
.
m
();
}
{
static
int
baz
=
3
;
i
+=
baz
;
baz
+=
30
;
}
i
+=
baz
;
baz
+=
60
;
return
i
;
}
};
int
main
()
{
foo
x
;
if
(
x
.
bar
()
!=
16
)
return
1
;
if
(
x
.
bar
()
!=
117
)
return
1
;
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