| 1221 | m_breaks.top().push_back(m_gen.Function.Goto()); |
| 1222 | } |
| 1223 | void HLSLCompiler::translateContinueStatement(M4::HLSLContinueStatement* brk) |
| 1224 | { |
| 1225 | m_gen.Function.SetAddress(m_gen.Function.Goto(), m_continueAddr.top()); |
| 1226 | } |
| 1227 | void HLSLCompiler::translateIfStatement(M4::HLSLIfStatement* ifStmt) |
| 1228 | { |
| 1229 | translateExpression(ifStmt->condition); |
nothing calls this directly
no outgoing calls
no test coverage detected