mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-21 18:24:23 +00:00
Add the source language into the compile unit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151143 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -32,8 +32,9 @@
|
||||
using namespace llvm;
|
||||
|
||||
/// CompileUnit - Compile unit constructor.
|
||||
CompileUnit::CompileUnit(unsigned I, DIE *D, AsmPrinter *A, DwarfDebug *DW)
|
||||
: ID(I), CUDie(D), Asm(A), DD(DW), IndexTyDie(0) {
|
||||
CompileUnit::CompileUnit(unsigned I, unsigned L, DIE *D, AsmPrinter *A,
|
||||
DwarfDebug *DW)
|
||||
: ID(I), Language(L), CUDie(D), Asm(A), DD(DW), IndexTyDie(0) {
|
||||
DIEIntegerOne = new (DIEValueAllocator) DIEInteger(1);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user