# elif defined(MSWINCE) && defined(NO_DEBUGGING)
# define ABORT(msg) (GC_on_abort(msg), ExitProcess(-1))
# elif defined(MSWIN32) || defined(MSWINCE)
-# define ABORT(msg) (GC_on_abort(msg), DebugBreak())
- /* Note that on a WinCE box, this could be silently */
- /* ignored (i.e., the program is not aborted). */
+# define ABORT(msg) { GC_on_abort(msg); DebugBreak(); }
+ /* Note that: on a WinCE box, this could be silently */
+ /* ignored (i.e., the program is not aborted); */
+ /* DebugBreak is a statement in some toolchains. */
# else
# define ABORT(msg) (GC_on_abort(msg), abort())
# endif /* !MSWIN32 */