]> granicus.if.org Git - gc/commitdiff
2006-09-19 Hans Boehm <Hans.Boehm@hp.com>
authorhboehm <hboehm>
Wed, 20 Sep 2006 01:05:35 +0000 (01:05 +0000)
committerIvan Maidanski <ivmai@mail.ru>
Tue, 26 Jul 2011 17:06:38 +0000 (21:06 +0400)
* misc.c: Replace ABORT with #error.

misc.c

diff --git a/misc.c b/misc.c
index 3001d40b38c83dddd031b29ba3295546d350a6fd..8733c5499212b987eb4f6544e82ebc12a8e5d467 100644 (file)
--- a/misc.c
+++ b/misc.c
@@ -658,12 +658,10 @@ void GC_init_inner()
     GC_STATIC_ASSERT(sizeof (struct hblk) == HBLKSIZE);
 #   ifndef THREADS
 #     if defined(STACK_GROWS_UP) && defined(STACK_GROWS_DOWN)
-       ABORT(
-         "Only one of STACK_GROWS_UP and STACK_GROWS_DOWN should be defd\n");
+#       error "Only one of STACK_GROWS_UP and STACK_GROWS_DOWN should be defd"
 #     endif
 #     if !defined(STACK_GROWS_UP) && !defined(STACK_GROWS_DOWN)
-       ABORT(
-         "One of STACK_GROWS_UP and STACK_GROWS_DOWN should be defd\n");
+#       error "One of STACK_GROWS_UP and STACK_GROWS_DOWN should be defd"
 #     endif
 #     ifdef STACK_GROWS_DOWN
         GC_ASSERT((word)(&dummy) <= (word)GC_stackbottom);