diff options
author | Sriraman Tallam <tmsriram@google.com> | 2009-10-13 00:39:31 +0000 |
---|---|---|
committer | Sriraman Tallam <tmsriram@google.com> | 2009-10-13 00:39:31 +0000 |
commit | f345227a0cfefcdd2c6d7757e5e5c87b441fc73e (patch) | |
tree | 7f7cbd3597490cd7e60ae8de65af23c55e6aee42 /gold/symtab.h | |
parent | 01c4733f397a1f4fc5eb52cf9f189f88ff7283e7 (diff) | |
download | gdb-f345227a0cfefcdd2c6d7757e5e5c87b441fc73e.zip gdb-f345227a0cfefcdd2c6d7757e5e5c87b441fc73e.tar.gz gdb-f345227a0cfefcdd2c6d7757e5e5c87b441fc73e.tar.bz2 |
* symtab.h: Check for GOLD_SYMTAB_H before header includes. Remove
includes to gc.h and icf.h.
* arm.cc: Include gc.h.
* gold.cc: Likewise.
* i386.cc: Likewise.
* powerpc.cc: Likewise.
* sparc.cc: Likewise.
* x86_64.cc: Likewise.
* gc.h: Include icf.h.
Diffstat (limited to 'gold/symtab.h')
-rw-r--r-- | gold/symtab.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gold/symtab.h b/gold/symtab.h index 148634e..d186cc1 100644 --- a/gold/symtab.h +++ b/gold/symtab.h @@ -23,20 +23,18 @@ // Symbol_table // The symbol table. +#ifndef GOLD_SYMTAB_H +#define GOLD_SYMTAB_H + #include <string> #include <utility> #include <vector> -#include "gc.h" -#include "icf.h" #include "elfcpp.h" #include "parameters.h" #include "stringpool.h" #include "object.h" -#ifndef GOLD_SYMTAB_H -#define GOLD_SYMTAB_H - namespace gold { |