1
Fork 0
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:
Andreas Kling 2019-04-22 23:38:33 +02:00
parent 5c68929aa1
commit 2d7cad6a16
6 changed files with 10 additions and 16 deletions

View file

@ -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) {