We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 588c0b2 + 861e2e3 commit c12e556Copy full SHA for c12e556
lib/SIL/SILWitnessTable.cpp
@@ -19,6 +19,7 @@
19
//
20
//===----------------------------------------------------------------------===//
21
22
+#define DEBUG_TYPE "sil-witness-table"
23
#include "swift/SIL/SILWitnessTable.h"
24
#include "swift/AST/ASTMangler.h"
25
#include "swift/AST/Module.h"
@@ -66,6 +67,8 @@ SILWitnessTable *SILWitnessTable::create(
66
67
// Create the mangled name of our witness table...
68
Identifier Name = M.getASTContext().getIdentifier(mangleConstant(Conformance));
69
70
+ LLVM_DEBUG(llvm::dbgs() << "SILWitnessTable Creating: " << Name.str() << '\n');
71
+
72
// Allocate the witness table and initialize it.
73
void *buf = M.allocate(sizeof(SILWitnessTable), alignof(SILWitnessTable));
74
SILWitnessTable *wt = ::new (buf)
0 commit comments