X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gas%2Fsb.h;h=760a21eac602fc9639d500fff8f706dc6facc45e;hb=144b71e2a88e02d0b54d4f09cc652f353b46e455;hp=51bcf653e48f8665f6c1be39f9a5902197cb8efd;hpb=ec2655a6a75bc61d21e6f8ddc1e9f9027a8914dd;p=deliverable%2Fbinutils-gdb.git diff --git a/gas/sb.h b/gas/sb.h index 51bcf653e4..760a21eac6 100644 --- a/gas/sb.h +++ b/gas/sb.h @@ -1,5 +1,5 @@ /* sb.h - header file for string buffer manipulation routines - Copyright 1994, 1995, 2000, 2003, 2006, 2007 Free Software Foundation, Inc. + Copyright (C) 1994-2016 Free Software Foundation, Inc. Written by Steve and Judy Chamberlain of Cygnus Support, sac@cygnus.com @@ -41,43 +41,28 @@ Obstacks provide all the functionality needed, but are too complicated, hence the sb. - An sb is allocated by the caller, and is initialized to point to an - sb_element. sb_elements are kept on a free lists, and used when - needed, replaced onto the free list when unused. */ - -#define sb_max_power_two 30 /* Don't allow strings more than - 2^sb_max_power_two long. */ + An sb is allocated by the caller. */ typedef struct sb { char *ptr; /* Points to the current block. */ - int len; /* How much is used. */ - int pot; /* The maximum length is 1<