diff options
Diffstat (limited to 'lld/lib/Core/SymbolTable.cpp')
| -rw-r--r-- | lld/lib/Core/SymbolTable.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lld/lib/Core/SymbolTable.cpp b/lld/lib/Core/SymbolTable.cpp index 4dc86b76250..bec71006faa 100644 --- a/lld/lib/Core/SymbolTable.cpp +++ b/lld/lib/Core/SymbolTable.cpp @@ -9,22 +9,22 @@ #include "lld/Core/SymbolTable.h" #include "lld/Core/Atom.h" -#include "lld/Core/DefinedAtom.h" -#include "lld/Core/UndefinedAtom.h" -#include "lld/Core/SharedLibraryAtom.h" #include "lld/Core/AbsoluteAtom.h" +#include "lld/Core/DefinedAtom.h" #include "lld/Core/File.h" #include "lld/Core/InputFiles.h" +#include "lld/Core/Platform.h" #include "lld/Core/Resolver.h" -#include "lld/Platform/Platform.h" +#include "lld/Core/SharedLibraryAtom.h" +#include "lld/Core/UndefinedAtom.h" -#include "llvm/Support/ErrorHandling.h" -#include "llvm/ADT/DenseMapInfo.h" #include "llvm/ADT/ArrayRef.h" +#include "llvm/ADT/DenseMapInfo.h" +#include "llvm/Support/ErrorHandling.h" #include <algorithm> #include <cassert> -#include <stdlib.h> +#include <cstdlib> #include <vector> namespace lld { |

