mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
4c0ae9066f
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167728 91177308-0d34-0410-b5e6-96231b3b80d8
28 lines
1.1 KiB
C++
28 lines
1.1 KiB
C++
//===-- DIContext.cpp -----------------------------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/DebugInfo/DIContext.h"
|
|
#include "DWARFContext.h"
|
|
using namespace llvm;
|
|
|
|
DIContext::~DIContext() {}
|
|
|
|
DIContext *DIContext::getDWARFContext(bool isLittleEndian,
|
|
StringRef infoSection,
|
|
StringRef abbrevSection,
|
|
StringRef aRangeSection,
|
|
StringRef lineSection,
|
|
StringRef stringSection,
|
|
StringRef rangeSection,
|
|
const RelocAddrMap *Map) {
|
|
return new DWARFContextInMemory(isLittleEndian, infoSection, abbrevSection,
|
|
aRangeSection, lineSection, stringSection,
|
|
rangeSection, Map);
|
|
}
|