1/* $OpenBSD: s_llrint.S,v 1.2 2016/09/12 19:47:01 guenther Exp $ */ 2 3/* 4 * Written by Martynas Venckus. Public domain 5 */ 6 7#include <machine/asm.h> 8 9ENTRY(llrint) 10 cvtsd2si %xmm0, %rax 11 ret 12END(llrint) 13