Skip to content
Snippets Groups Projects
Commit 22a78d64 authored by Edgar E. Iglesias's avatar Edgar E. Iglesias
Browse files

microblaze-user: Deliver SIGFPE on div by zero


Signed-off-by: default avatarEdgar E. Iglesias <edgar.iglesias@gmail.com>
parent a5e1cbc8
No related branches found
No related tags found
No related merge requests found
......@@ -2339,6 +2339,13 @@ void cpu_loop (CPUState *env)
env->iflags &= ~(IMM_FLAG | D_FLAG);
switch (env->sregs[SR_ESR] & 31) {
case ESR_EC_DIVZERO:
info.si_signo = SIGFPE;
info.si_errno = 0;
info.si_code = TARGET_FPE_FLTDIV;
info._sifields._sigfault._addr = 0;
queue_signal(env, info.si_signo, &info);
break;
case ESR_EC_FPU:
info.si_signo = SIGFPE;
info.si_errno = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment