diff options
author | Joseph Myers <joseph@codesourcery.com> | 2007-06-29 20:04:26 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2007-06-29 20:04:26 +0000 |
commit | 7ace4e4c069e214d13ef4289b57a6bad08050ecf (patch) | |
tree | b119a9d6f1438dcfe3babdc95eb196877738864d /gas/as.c | |
parent | a19bcec6a7fd59541beeb1584cf5a6432ff114ee (diff) | |
download | binutils-7ace4e4c069e214d13ef4289b57a6bad08050ecf.zip binutils-7ace4e4c069e214d13ef4289b57a6bad08050ecf.tar.gz binutils-7ace4e4c069e214d13ef4289b57a6bad08050ecf.tar.bz2 |
* as.c (main): Only call create_obj_attrs_section if IS_ELF.
Diffstat (limited to 'gas/as.c')
-rw-r--r-- | gas/as.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1174,7 +1174,8 @@ main (int argc, char ** argv) #endif #ifdef OBJ_ELF - create_obj_attrs_section (); + if (IS_ELF) + create_obj_attrs_section (); #endif #if defined OBJ_ELF || defined OBJ_MAYBE_ELF |