| 1607 | } |
| 1608 | |
| 1609 | void GLSLCompiler::translateContinueStatement() { |
| 1610 | m_gen.Function.SetAddress(m_gen.Function.Goto(), m_continueAddr.top()); |
| 1611 | } |
| 1612 | |
| 1613 | void GLSLCompiler::translateBreakStatement() { |
| 1614 | if (m_breaks.size() > 0) |
nothing calls this directly
no outgoing calls
no test coverage detected