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
e6a8345b
Commit
e6a8345b
authored
23 years ago
by
Tom Tromey
Committed by
Tom Tromey
23 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
For PR java/4766:
* libjava.compile/PR4766.java: New file. From-SVN: r48209
parent
56b8325e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
0 deletions
+30
-0
libjava/testsuite/ChangeLog
+5
-0
libjava/testsuite/libjava.compile/PR4766.java
+25
-0
No files found.
libjava/testsuite/ChangeLog
View file @
e6a8345b
2001-12-20 Tom Tromey <tromey@redhat.com>
For PR java/4766:
* libjava.compile/PR4766.java: New file.
2001-12-20 Andrew Haley <aph@redhat.com>
* libjava.lang/FileHandleGcTest.out: New file.
...
...
This diff is collapsed.
Click to expand it.
libjava/testsuite/libjava.compile/PR4766.java
0 → 100644
View file @
e6a8345b
// Test that bytecode generation works even when `finally' clause
// doesn't return normally.
public
class
PR4766
{
public
static
int
myfunction
()
{
try
{
System
.
out
.
println
(
"hi"
);
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
}
finally
{
return
0
;
}
}
public
static
void
main
(
String
[]
args
)
{
}
}
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