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
6ba74c2d
Commit
6ba74c2d
authored
Oct 07, 2010
by
Richard Henderson
Committed by
Richard Henderson
Oct 07, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move enum unwind_info_type from target.h to coretypes.h.
From-SVN: r165131
parent
d4c1abb3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
10 deletions
+15
-10
gcc/ChangeLog
+5
-0
gcc/coretypes.h
+10
-0
gcc/target.h
+0
-10
No files found.
gcc/ChangeLog
View file @
6ba74c2d
2010-10-07 Richard Henderson <rth@redhat.com>
* target.h (enum unwind_info_type): Move ...
* coretypes.h: ... here.
2010-10-07 Nicola Pero <nicola.pero@meta-innovation.com>
* doc/objc.texi (Fast enumeration protocol): Mention that
gcc/coretypes.h
View file @
6ba74c2d
...
...
@@ -111,6 +111,16 @@ enum tls_model {
TLS_MODEL_LOCAL_EXEC
};
/* Types of unwind/exception handling info that can be generated. */
enum
unwind_info_type
{
UI_NONE
,
UI_SJLJ
,
UI_DWARF2
,
UI_TARGET
};
struct
edge_def
;
typedef
struct
edge_def
*
edge
;
typedef
const
struct
edge_def
*
const_edge
;
...
...
gcc/target.h
View file @
6ba74c2d
...
...
@@ -128,16 +128,6 @@ enum vect_cost_for_stmt
vec_perm
};
/* Types of unwind/exception handling info that can be generated. */
enum
unwind_info_type
{
UI_NONE
,
UI_SJLJ
,
UI_DWARF2
,
UI_TARGET
};
/* The target structure. This holds all the backend hooks. */
#define DEFHOOKPOD(NAME, DOC, TYPE, INIT) TYPE NAME;
#define DEFHOOK(NAME, DOC, TYPE, PARAMS, INIT) TYPE (* NAME) PARAMS;
...
...
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