File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -389,6 +389,23 @@ struct DebugInfoScopeGen {
389389 LLVMMetadataReplaceAllUsesWith(tmp, ret);
390390 return ret;
391391 }
392+
393+ /**
394+ * FIXME: Various placeholder for symbols that are not implemented.
395+ */
396+ LLVMMetadataRef visit (Template t) {
397+ // FIXME: Generate debug infos for the template.
398+ // At the moment, ldc doesn't generate anything,
399+ // so it is fine not to.
400+ return visit (t.getParentScope());
401+ }
402+
403+ LLVMMetadataRef visit (TemplateInstance i) {
404+ // FIXME: Generate debug infos for the template instance.
405+ // At the moment, ldc doesn't generate anything,
406+ // so it is fine not to.
407+ return visit (i.getParentScope());
408+ }
392409}
393410
394411struct DebugInfoTypeGen {
You can’t perform that action at this time.
0 commit comments