Support debug system bus access.
[riscv-isa-sim.git] / softfloat / s_commonNaNToF64UI.c
old mode 100755 (executable)
new mode 100644 (file)
index da36c04..861b269
@@ -1,18 +1,5 @@
 
-#include <stdint.h>
-#include "platform.h"
-#include "specialize.h"
-
 /*----------------------------------------------------------------------------
-| Returns the result of converting the canonical NaN `a' to the double-
-| precision floating-point format.
+| This file intentionally contains no code.
 *----------------------------------------------------------------------------*/
 
-uint_fast64_t softfloat_commonNaNToF64UI( struct commonNaN a )
-{
-
-    return
-        (uint_fast64_t) a.sign<<63 | UINT64_C( 0x7FFFFFFFFFFFFFFF );
-
-}
-