Commit efcc334c authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '9495cd17'

* commit '9495cd17':
  configure: Fix check_exec_crash for ICL support

Conflicts:
	configure
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 5f44f47b 9495cd17
......@@ -1014,10 +1014,10 @@ check_exec_crash(){
static void sighandler(int sig){
raise(SIGTERM);
}
int func(void){
int foo(void){
$code
}
int (*func_ptr)(void) = func;
int (*func_ptr)(void) = foo;
int main(void){
signal(SIGILL, sighandler);
signal(SIGFPE, sighandler);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment