With 229d576b31f4071ab68c85ac4fabb78cfa502b04 the class EHFrameSplitter was renamed to DWARFRecordSectionSplitter. This change merely moves it to it's own .cpp/.h file
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
llvm/include/llvm/ExecutionEngine/JITLink/DWARFRecordSectionSplitter.h | ||
---|---|---|
13 | This include is also here because of the cpp file which requires this include, should I move this to the cpp file? | |
14 | This is needed because in the cpp file it creates a BinaryStreamReader, should I move the include to the cpp file instead? llvm/lib/ExecutionEngine/JITLink/DWARFRecordSectionSplitter.cpp:76 BinaryStreamReader BlockReader( StringRef(B.getContent().data(), B.getContent().size()), G.getEndianness()); |
llvm/include/llvm/ExecutionEngine/JITLink/DWARFRecordSectionSplitter.h | ||
---|---|---|
13 | Hmm, I was wrong, but the forward declaration will not work here because it also uses a nested class which I do not think can be forward declared |
typo: Splittert