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
1c732eb7
Commit
1c732eb7
authored
Sep 10, 2010
by
Nicola Pero
Committed by
Nicola Pero
Sep 10, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* objc.dg/fobjc-exceptions.m: New test.
From-SVN: r164152
parent
3dac89f7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
0 deletions
+33
-0
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/objc.dg/fobjc-exceptions.m
+29
-0
No files found.
gcc/testsuite/ChangeLog
View file @
1c732eb7
2010-09-10 Nicola Pero <nicola.pero@meta-innovation.com>
* objc.dg/fobjc-exceptions.m: New test.
2010-09-10 Jan Hubicka <jh@suse.cz>
* g++.dg/inherit/covariant7.C: Fix pattern matching.
...
...
gcc/testsuite/objc.dg/fobjc-exceptions.m
0 → 100644
View file @
1c732eb7
/
*
Test
that
Objective
-
C
exceptions
cause
an
error
with
-
fobjc
-
exceptions
.
*
/
/
*
{
dg
-
do
compile
}
*
/
@
class
Object
;
int
dummy
(
int
number
,
Object
*
o
)
{
@
try
{
/
*
{
dg
-
error
"
fobjc
-
exceptions
"
"
is
required
to
enable
Objective
-
C
exception
syntax
"
}
*
/
number
++
;
@
throw
o
;
/
*
{
dg
-
error
"
fobjc
-
exceptions
"
"
is
required
to
enable
Objective
-
C
exception
syntax
"
}
*
/
}
@
catch
(
id
object
)
{
number
++
;
@
throw
;
/
*
{
dg
-
error
"
fobjc
-
exceptions
"
"
is
required
to
enable
Objective
-
C
exception
syntax
"
}
*
/
}
@
finally
{
number
++
;
}
@
synchronized
(
o
)
/
*
{
dg
-
error
"
fobjc
-
exceptions
"
"
is
required
to
enable
Objective
-
C
exception
syntax
"
}
*
/
{
number
++
;
}
return
number
;
}
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