Roll to version 2.1.
authorJohn Gilmore <gnu@cygnus>
Tue, 16 Feb 1993 08:49:29 +0000 (08:49 +0000)
committerJohn Gilmore <gnu@cygnus>
Tue, 16 Feb 1993 08:49:29 +0000 (08:49 +0000)
bfd/ChangeLog
bfd/VERSION
bfd/bfd-in.h

index 0cff8a3b43eb1d2b5638a142ded83b62d9cbb026..febd1eabe106f415feae0f0ad8ed6c44a0a849ae 100644 (file)
@@ -1,3 +1,7 @@
+Tue Feb 16 00:44:54 1993  John Gilmore  (gnu@cygnus.com)
+
+       * bfd-in.h, VERSION:  Roll to version 2.1.
+
 Mon Feb 15 20:43:51 1993  John Gilmore  (gnu@cygnus.com)
 
        * oasys.c (oasys_write_object_contents):  Lint.
index a4d2aceeb8dbfbe1485a13e51c67dc626bf67a4e..879b416e609a820dafeff67d679a7e3849fe8a09 100644 (file)
@@ -1 +1 @@
-0.18
+2.1
index 637af0d2feb2cfc24b8f918ae5b2e9f4f89f547a..d5eeb564b146da7e73a53e147808e45794830740 100644 (file)
@@ -45,7 +45,7 @@ here.  */
 #include "ansidecl.h"
 #include "obstack.h"
 
-#define BFD_VERSION "2.0"
+#define BFD_VERSION "2.1"
 
 /* forward declaration */
 typedef struct _bfd bfd;
@@ -144,7 +144,7 @@ typedef int symtype;                /* Who knows, yet? */
 #define bfd_get_output_section(x) ((x)->section->output_section)
 #define bfd_set_section(x,y) ((x)->section) = (y)
 #define bfd_asymbol_base(x) ((x)->section->vma)
-#define bfd_asymbol_value(x) (bfd_asymbol_base(x) + x->value)
+#define bfd_asymbol_value(x) (bfd_asymbol_base(x) + (x)->value)
 #define bfd_asymbol_name(x) ((x)->name)
 /*Perhaps future: #define bfd_asymbol_bfd(x) ((x)->section->owner)*/
 #define bfd_asymbol_bfd(x) ((x)->the_bfd)
@@ -193,6 +193,8 @@ typedef struct sec *sec_ptr;
 #define bfd_get_section_flags(bfd, ptr) ((ptr)->flags + 0)
 #define bfd_get_section_userdata(bfd, ptr) ((ptr)->userdata)
 
+#define bfd_is_com_section(ptr) (((ptr)->flags & SEC_IS_COMMON) != 0)
+
 #define bfd_set_section_vma(bfd, ptr, val) (((ptr)->vma = (val)), ((ptr)->user_set_vma = true), true)
 #define bfd_set_section_alignment(bfd, ptr, val) (((ptr)->alignment_power = (val)),true)
 #define bfd_set_section_userdata(bfd, ptr, val) (((ptr)->userdata = (val)),true)
This page took 0.028574 seconds and 4 git commands to generate.