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=d5da4f291af551c0b8b79e1d4a9b173d60e5c10e;hpb=7b5ea4fcdf2819e070665ab5610f8b48e3867c10 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)