X-Git-Url: https://oss.titaniummirror.com/gitweb?p=msp430-binutils.git;a=blobdiff_plain;f=gas%2Fsb.c;fp=gas%2Fsb.c;h=8d5e8dde2fb8e8a9da2d3fb2d20471272132c9d6;hp=5f590292eba4ae02b8612d906f1da152ecf8c084;hb=88750007d7869f178f0ba528f41efd3b74c424cf;hpb=6df9443a374e2b81278c61b8afc0a1eef7db280b diff --git a/gas/sb.c b/gas/sb.c index 5f59029..8d5e8dd 100644 --- a/gas/sb.c +++ b/gas/sb.c @@ -1,5 +1,5 @@ /* sb.c - string buffer manipulation routines - Copyright 1994, 1995, 2000, 2003, 2006, 2007 + Copyright 1994, 1995, 2000, 2003, 2005, 2006, 2007, 2009 Free Software Foundation, Inc. Written by Steve and Judy Chamberlain of Cygnus Support, @@ -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)