mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 17:38:12 +00:00
Kernel: Make sure we don't use any FPU/MMX/SSE instructions.
This commit is contained in:
parent
5c68929aa1
commit
2d7cad6a16
6 changed files with 10 additions and 16 deletions
|
@ -248,10 +248,12 @@ one_more:
|
|||
ret += print_hex(putch, bufptr, va_arg(ap, qword), 16);
|
||||
break;
|
||||
|
||||
#ifndef KERNEL
|
||||
case 'f':
|
||||
// FIXME: Print as float!
|
||||
ret += print_number(putch, bufptr, (int)va_arg(ap, double), leftPad, zeroPad, fieldWidth);
|
||||
break;
|
||||
#endif
|
||||
|
||||
case 'o':
|
||||
if (alternate_form) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue