Commit 6ba74c2d by Richard Henderson Committed by Richard Henderson

Move enum unwind_info_type from target.h to coretypes.h.

From-SVN: r165131
parent d4c1abb3
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
......@@ -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;
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment