mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
AsmWriter/Bitcode: MDSubroutineType
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229011 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1484,10 +1484,16 @@ static void writeMDCompositeType(raw_ostream &Out, const MDCompositeType *N,
|
||||
Out << ")";
|
||||
}
|
||||
|
||||
static void writeMDSubroutineType(raw_ostream &, const MDSubroutineType *,
|
||||
TypePrinting *, SlotTracker *,
|
||||
const Module *) {
|
||||
llvm_unreachable("write not implemented");
|
||||
static void writeMDSubroutineType(raw_ostream &Out, const MDSubroutineType *N,
|
||||
TypePrinting *TypePrinter,
|
||||
SlotTracker *Machine, const Module *Context) {
|
||||
Out << "!MDSubroutineType(";
|
||||
FieldSeparator FS;
|
||||
if (N->getFlags())
|
||||
Out << FS << "flags: " << N->getFlags();
|
||||
Out << FS << "types: ";
|
||||
writeMetadataAsOperand(Out, N->getTypeArray(), TypePrinter, Machine, Context);
|
||||
Out << ")";
|
||||
}
|
||||
|
||||
static void writeMDFile(raw_ostream &Out, const MDFile *N, TypePrinting *,
|
||||
|
Reference in New Issue
Block a user