Add in a space that got lost in the previous commit in some debugging code
so that '&' becomes a binary operator and not a unary operator.
This commit is contained in:
parent
7544f1ff1f
commit
655836bbff
@ -513,7 +513,7 @@ npxexit(p)
|
||||
u_int masked_exceptions;
|
||||
|
||||
masked_exceptions = PCPU_GET(curpcb)->pcb_savefpu.sv_env.en_cw
|
||||
&PCPU_GET(curpcb)->pcb_savefpu.sv_env.en_sw & 0x7f;
|
||||
& PCPU_GET(curpcb)->pcb_savefpu.sv_env.en_sw & 0x7f;
|
||||
/*
|
||||
* Log exceptions that would have trapped with the old
|
||||
* control word (overflow, divide by 0, and invalid operand).
|
||||
|
@ -513,7 +513,7 @@ npxexit(p)
|
||||
u_int masked_exceptions;
|
||||
|
||||
masked_exceptions = PCPU_GET(curpcb)->pcb_savefpu.sv_env.en_cw
|
||||
&PCPU_GET(curpcb)->pcb_savefpu.sv_env.en_sw & 0x7f;
|
||||
& PCPU_GET(curpcb)->pcb_savefpu.sv_env.en_sw & 0x7f;
|
||||
/*
|
||||
* Log exceptions that would have trapped with the old
|
||||
* control word (overflow, divide by 0, and invalid operand).
|
||||
|
@ -513,7 +513,7 @@ npxexit(p)
|
||||
u_int masked_exceptions;
|
||||
|
||||
masked_exceptions = PCPU_GET(curpcb)->pcb_savefpu.sv_env.en_cw
|
||||
&PCPU_GET(curpcb)->pcb_savefpu.sv_env.en_sw & 0x7f;
|
||||
& PCPU_GET(curpcb)->pcb_savefpu.sv_env.en_sw & 0x7f;
|
||||
/*
|
||||
* Log exceptions that would have trapped with the old
|
||||
* control word (overflow, divide by 0, and invalid operand).
|
||||
|
Loading…
Reference in New Issue
Block a user