| 825 | } |
| 826 | |
| 827 | static std::string frameFixedSizeExpr(const FrameDecl& frame) { |
| 828 | std::vector<std::string> terms; |
| 829 | for (const auto& field : frame.fields) terms.push_back("sizeof(" + field.type + ")"); |
| 830 | return sumExpr(terms); |
| 831 | } |
| 832 | |
| 833 | static std::string frameOffsetExpr(const FrameDecl& frame, size_t index) { |
| 834 | std::vector<std::string> terms; |
nothing calls this directly
no outgoing calls
no test coverage detected