aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/erl_binary.h
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2013-08-27 17:23:09 +0200
committerSverker Eriksson <[email protected]>2013-09-30 17:34:10 +0200
commit156b011958a3b80e507039ddc916db039874ada1 (patch)
tree1bebd9b4ba948a5fa14d091275f9f334559f35d8 /erts/emulator/beam/erl_binary.h
parente0ecc86e35475b434efa6cccba44074ca1040b7a (diff)
downloadotp-156b011958a3b80e507039ddc916db039874ada1.tar.gz
otp-156b011958a3b80e507039ddc916db039874ada1.tar.bz2
otp-156b011958a3b80e507039ddc916db039874ada1.zip
erts: Refactor the ASSERT macro
Introduce unconditional ERTS_ASSERT and use that for both ASSERT and ASSERT_EXPR.
Diffstat (limited to 'erts/emulator/beam/erl_binary.h')
-rw-r--r--erts/emulator/beam/erl_binary.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/beam/erl_binary.h b/erts/emulator/beam/erl_binary.h
index 506c4813fa..331a12dc1c 100644
--- a/erts/emulator/beam/erl_binary.h
+++ b/erts/emulator/beam/erl_binary.h
@@ -1,7 +1,7 @@
/*
* %CopyrightBegin%
*
- * Copyright Ericsson AB 2000-2011. All Rights Reserved.
+ * Copyright Ericsson AB 2000-2013. All Rights Reserved.
*
* The contents of this file are subject to the Erlang Public License,
* Version 1.1, (the "License"); you may not use this file except in
@@ -183,7 +183,7 @@ BIF_RETTYPE erts_binary_part(Process *p, Eterm binary, Eterm epos, Eterm elen);
#endif
#define ERTS_CHK_BIN_ALIGNMENT(B) \
- do { ASSERT(!(B) || (((UWord) &((Binary *)(B))->orig_bytes[0]) & ERTS_BIN_ALIGNMENT_MASK) == ((UWord) 0)) } while(0)
+ do { ASSERT(!(B) || (((UWord) &((Binary *)(B))->orig_bytes[0]) & ERTS_BIN_ALIGNMENT_MASK) == ((UWord) 0)); } while(0)
ERTS_GLB_INLINE byte* erts_get_aligned_binary_bytes(Eterm bin, byte** base_ptr);
ERTS_GLB_INLINE void erts_free_aligned_binary_bytes(byte* buf);