* gas/elf/elf.exp (groupautob): Don't run on xtensa.
[deliverable/binutils-gdb.git] / gold / incremental-dump.cc
index 68fba5ca1e1b24288c5257fcc6682907f2202b3c..348e795fc66afc0d8031027246b9ea70268ab9a4 100644 (file)
@@ -95,7 +95,7 @@ dump_incremental_inputs(const char* argv0, const char* filename,
     {
       fprintf(stderr, "%s: %s: no .gnu_incremental_inputs section\n", argv0,
               filename);
-      exit (1);
+      exit(1);
     }
 
   elfcpp::Elf_file<size, big_endian, Incremental_binary> elf_file(inc);
@@ -276,7 +276,7 @@ dump_incremental_inputs(const char* argv0, const char* filename,
   if (symtab_shndx == elfcpp::SHN_UNDEF)  // Not found.
     {
       fprintf(stderr, "%s: %s: no symbol table section\n", argv0, filename);
-      exit (1);
+      exit(1);
     }
   Location symtab_location(elf_file.section_contents(symtab_shndx));
   View symtab_view(inc->view(symtab_location));
@@ -289,7 +289,7 @@ dump_incremental_inputs(const char* argv0, const char* filename,
       || elf_file.section_type(strtab_shndx) != elfcpp::SHT_STRTAB)
     {
       fprintf(stderr, "%s: %s: no string table section\n", argv0, filename);
-      exit (1);
+      exit(1);
     }
   Location strtab_location(elf_file.section_contents(strtab_shndx));
   View strtab_view(inc->view(strtab_location));
This page took 0.024787 seconds and 4 git commands to generate.