| 68 | return; |
| 69 | } |
| 70 | AST::CustomSection createCore() { |
| 71 | AST::CustomSection Core; |
| 72 | Core.setName("core"); |
| 73 | auto &Content = Core.getContent(); |
| 74 | Content.insert(Content.begin(), {0x00, 0x00}); |
| 75 | return Core; |
| 76 | } |
| 77 | |
| 78 | AST::CustomSection createCorestack( |
| 79 | Loader::Serializer &Ser, Span<const Runtime::StackManager::Frame> Frames, |
no test coverage detected