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 "DebugMap.h"
10 #include "dsymutil.h"
11
12 namespace llvm {
13 namespace dsymutil {
14
15 bool linkDwarf(StringRef OutputFilename, const DebugMap &DM) {
16   // Do nothing for now.
17   return true;
18 }
19 }
20 }