summaryrefslogtreecommitdiff
path: root/gas/sb.c
diff options
context:
space:
mode:
Diffstat (limited to 'gas/sb.c')
-rw-r--r--gas/sb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/sb.c b/gas/sb.c
index 5f590292eb..155afeba1c 100644
--- a/gas/sb.c
+++ b/gas/sb.c
@@ -59,7 +59,7 @@ sb_build (sb *ptr, int size)
/* See if we can find one to allocate. */
sb_element *e;
- assert (size < sb_max_power_two);
+ gas_assert (size < sb_max_power_two);
e = free_list.size[size];
if (!e)