| 818 | } |
| 819 | |
| 820 | static bool canEmitFixedFrame(const FrameDecl& frame) { |
| 821 | for (const auto& field : frame.fields) { |
| 822 | if (field.payload || !isIntegral(field.type)) return false; |
| 823 | } |
| 824 | return true; |
| 825 | } |
| 826 | |
| 827 | static std::string frameFixedSizeExpr(const FrameDecl& frame) { |
| 828 | std::vector<std::string> terms; |
nothing calls this directly
no outgoing calls
no test coverage detected