blob: 6158780a1cb8a88611204b3e8c2626c08a0b7081 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//===- lib/ReaderWriter/ELF/X86/X86LinkingContext.cpp ---------------------===//
//
// The LLVM Linker
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "X86LinkingContext.h"
#include "lld/Core/LLVM.h"
#include "llvm/ADT/StringSwitch.h"
#include "llvm/Support/ErrorOr.h"
using namespace lld;
|