Initial dsymutil tool commit.
[oota-llvm.git] / tools / dsymutil / DwarfLinker.cpp
1 //===- tools/dsymutil/DwarfLinker.cpp - Dwarf debug info linker -----------===//
2 //
3 //                             The LLVM Linker
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 #include "DwarfLinker.h"
10 #include "DebugMap.h"
11
12 namespace llvm {
13
14 DwarfLinker::DwarfLinker(StringRef OutputFilename)
15   : OutputFilename(OutputFilename)
16 {}
17
18 bool DwarfLinker::link(const DebugMap &Map) {
19   return true;
20 }
21
22 }