aboutsummaryrefslogtreecommitdiff
path: root/reference_model/src/arith_util.h
diff options
context:
space:
mode:
Diffstat (limited to 'reference_model/src/arith_util.h')
-rw-r--r--reference_model/src/arith_util.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/reference_model/src/arith_util.h b/reference_model/src/arith_util.h
index a75d7a3..9c84a03 100644
--- a/reference_model/src/arith_util.h
+++ b/reference_model/src/arith_util.h
@@ -231,7 +231,6 @@ inline void truncateFloatToBFloat(float* src, int64_t size) {
inline bool checkValidBFloat(float src)
{
/* Checks if the least significant two bytes are zero. */
- ASSERT_MEM(src);
char src_as_bytes[sizeof(float)];
memcpy(src_as_bytes, &src, sizeof(float));