mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-06 23:32:27 +00:00
21 lines
525 B
C++
21 lines
525 B
C++
|
//===- tools/dsymutil/DwarfLinker.cpp - Dwarf debug info linker -----------===//
|
||
|
//
|
||
|
// The LLVM Linker
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
#include "DebugMap.h"
|
||
|
#include "dsymutil.h"
|
||
|
|
||
|
namespace llvm {
|
||
|
namespace dsymutil {
|
||
|
|
||
|
bool linkDwarf(StringRef OutputFilename, const DebugMap &DM) {
|
||
|
// Do nothing for now.
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
}
|