From 3fda8b8e3bd7b65709750614a20c390f9a0bdd24 Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Tue, 15 Feb 2022 14:51:40 -0500 Subject: [PATCH] chore: Remove extraneous comments --- libsledge/src/numeric_instructions.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/libsledge/src/numeric_instructions.c b/libsledge/src/numeric_instructions.c index 785590a..ca2d59f 100644 --- a/libsledge/src/numeric_instructions.c +++ b/libsledge/src/numeric_instructions.c @@ -166,7 +166,6 @@ i64_trunc_f64(double f) return (int64_t)f; } -// Float => Float truncation functions INLINE float f32_trunc_f32(float f) { @@ -209,7 +208,6 @@ f32_nearest(float a) return nearbyintf(a); } -// Float => Float truncation functions INLINE double f64_trunc_f64(double f) { @@ -240,7 +238,6 @@ f64_ceil(double a) return ceil(a); } -// TODO: Is this missing in aWsm? f64.copysign INLINE double f64_copysign(double a, double b) {