]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Move enum unwind_info_type from target.h to coretypes.h.
authorRichard Henderson <rth@redhat.com>
Thu, 7 Oct 2010 20:03:13 +0000 (13:03 -0700)
committerRichard Henderson <rth@gcc.gnu.org>
Thu, 7 Oct 2010 20:03:13 +0000 (13:03 -0700)
From-SVN: r165131

gcc/ChangeLog
gcc/coretypes.h
gcc/target.h

index 17610366b287564925c2ce6f7fe6fc7417ded4ac..744c579080a69a6271efafe9865164283d768281 100644 (file)
@@ -1,3 +1,8 @@
+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
index 419142a733f6eb83c7f963ff6253fad4ab4b10d2..3c6368419e4c913d7f05d45c9d614a67df0fa97e 100644 (file)
@@ -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;
index f160e979415e127f797f52f56b4045f50f5356e6..99dd1eea99871eed4ae5194828a05f2f91f42bb1 100644 (file)
@@ -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;