efb80e7e09
Currently we're hacking libs-y to include libgcc.a, but this has unforeseen consequences since the userspace libgcc is linked with fpregs enabled. We need the kernel to stop using fpregs in an uncontrolled manner to implement lazy fpu state saves. Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
8 lines
121 B
C
8 lines
121 B
C
#include "libgcc.h"
|
|
|
|
u32 __udivsi3(u32 num, u32 den)
|
|
{
|
|
return __udivmodsi4(num, den, NULL);
|
|
}
|
|
EXPORT_SYMBOL(__udivsi3);
|