56 lines
1.4 KiB
C
56 lines
1.4 KiB
C
/***********************************************************************/
|
|
/* */
|
|
/* Objective Caml */
|
|
/* */
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
/* */
|
|
/* Copyright 2000 Institut National de Recherche en Informatique et */
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
|
/* under the terms of the GNU Library General Public License. */
|
|
/* */
|
|
/***********************************************************************/
|
|
|
|
/* $Id$ */
|
|
|
|
#include <stdio.h>
|
|
#include <signal.h>
|
|
#include <setjmp.h>
|
|
#include "m.h"
|
|
|
|
ARCH_INT64_TYPE foo;
|
|
|
|
void access_int64(ARCH_INT64_TYPE *p)
|
|
{
|
|
foo = *p;
|
|
}
|
|
|
|
jmp_buf failure;
|
|
|
|
void sig_handler(int sig)
|
|
{
|
|
longjmp(failure, 1);
|
|
}
|
|
|
|
int main(void)
|
|
{
|
|
long n[10];
|
|
int res;
|
|
signal(SIGSEGV, sig_handler);
|
|
#ifdef SIGBUS
|
|
signal(SIGBUS, sig_handler);
|
|
#endif
|
|
if(setjmp(failure) == 0) {
|
|
access_int64((ARCH_INT64_TYPE *) n);
|
|
access_int64((ARCH_INT64_TYPE *) (n+1));
|
|
res = 0;
|
|
} else {
|
|
res = 1;
|
|
}
|
|
signal(SIGSEGV, SIG_DFL);
|
|
#ifdef SIGBUS
|
|
signal(SIGBUS, SIG_DFL);
|
|
#endif
|
|
exit(res);
|
|
}
|
|
|