blob: f1ad87566b0e70f4efd5295d3d81f7ec9dc90eb7 [file] [log] [blame]
Frederic Riss231f7142014-12-12 17:31:24 +00001//===- 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
12namespace llvm {
13namespace dsymutil {
14
15bool linkDwarf(StringRef OutputFilename, const DebugMap &DM) {
16 // Do nothing for now.
17 return true;
18}
19}
20}