Displaying 1 result from an estimated 1 matches for "endassembly".
2008 Aug 17
0
[LLVMdev] [!] Breaking changes to GC infrastructure
Hi all,
In order to support linking AsmWriter separately from CodeGen, the
Collector class (a CodeGen component) had to be decoupled from the
AsmWriter interface. This required moving the beginAssembly and
endAssembly methods to a separate abstract base class. If you had
overridden these methods, your class may compile successfully but fail
at runtime with a message of the form:
no GCMetadataPrinter registered for collector: %s
The fix is to transition your overrides to a subclass of
GCMetadataPrint...