+2004-10-01 Paul Brook <paul@codesourcery.com>
+
+ * config/arm/crti.asm: Give _init and _fini function type.
+
2004-10-01 Zdenek Dvorak <dvorakz@suse.cz>
* common.opt (ftree-loop-ivcanon): Enable by default.
(canonicalize_induction_variables, tree_unroll_loops_completely):
Reset scev info.
-2004-01-01 Paul Brook <paul@codesourcery.com>
+2004-10-01 Paul Brook <paul@codesourcery.com>
* config/arm/arm.c (thumb_compute_saved_rag_mask): Or with bitmask,
not register number.
# .init sections. Users may put any desired instructions in those
# sections.
+#ifdef __ELF__
+#define TYPE(x) .type x,function
+#else
+#define TYPE(x)
+#endif
+
# Note - this macro is complemented by the FUNC_END macro
# in crtn.asm. If you change this macro you must also change
# that macro match.
#ifdef __thumb__
.thumb_func
#endif
+ TYPE(_init)
_init:
FUNC_START
#ifdef __thumb__
.thumb_func
#endif
+ TYPE(_fini)
_fini:
FUNC_START