diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:41:05 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2016-07-23 20:41:05 +0000 |
commit | 01095a5d43bbfde13731688ddcf6048ebb8b7721 (patch) | |
tree | 4def12e759965de927d963ac65840d663ef9d1ea /lib/IR/Comdat.cpp | |
parent | f0f4822ed4b66e3579e92a89f368f8fb860e218e (diff) |
Diffstat (limited to 'lib/IR/Comdat.cpp')
-rw-r--r-- | lib/IR/Comdat.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/IR/Comdat.cpp b/lib/IR/Comdat.cpp index 80715ff40ba92..fc1b48d1c190e 100644 --- a/lib/IR/Comdat.cpp +++ b/lib/IR/Comdat.cpp @@ -15,9 +15,6 @@ #include "llvm/ADT/StringMap.h" using namespace llvm; -Comdat::Comdat(SelectionKind SK, StringMapEntry<Comdat> *Name) - : Name(Name), SK(SK) {} - Comdat::Comdat(Comdat &&C) : Name(C.Name), SK(C.SK) {} Comdat::Comdat() : Name(nullptr), SK(Comdat::Any) {} |