Armando Montanez | 1e4b370 | 2018-12-03 19:30:52 +0000 | [diff] [blame] | 1 | //===- ELFStub.cpp --------------------------------------------------------===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Armando Montanez | 1e4b370 | 2018-12-03 19:30:52 +0000 | [diff] [blame] | 6 | // |
| 7 | //===-----------------------------------------------------------------------===/ |
| 8 | |
| 9 | #include "llvm/TextAPI/ELF/ELFStub.h" |
| 10 | |
| 11 | using namespace llvm; |
| 12 | using namespace llvm::elfabi; |
| 13 | |
| 14 | ELFStub::ELFStub(ELFStub const &Stub) { |
| 15 | TbeVersion = Stub.TbeVersion; |
| 16 | Arch = Stub.Arch; |
| 17 | SoName = Stub.SoName; |
| 18 | NeededLibs = Stub.NeededLibs; |
| 19 | Symbols = Stub.Symbols; |
| 20 | } |
| 21 | |
| 22 | ELFStub::ELFStub(ELFStub &&Stub) { |
| 23 | TbeVersion = std::move(Stub.TbeVersion); |
| 24 | Arch = std::move(Stub.Arch); |
| 25 | SoName = std::move(Stub.SoName); |
| 26 | NeededLibs = std::move(Stub.NeededLibs); |
| 27 | Symbols = std::move(Stub.Symbols); |
| 28 | } |