| 587 | } |
| 588 | |
| 589 | bool Instruction::IsDebugLineInst() const { |
| 590 | NonSemanticShaderDebugInfoInstructions ext_opt = GetShaderDebugOpcode(); |
| 591 | return ((ext_opt == NonSemanticShaderDebugInfoDebugLine) || |
| 592 | (ext_opt == NonSemanticShaderDebugInfoDebugNoLine)); |
| 593 | } |
| 594 | |
| 595 | bool Instruction::IsLineInst() const { return IsLine() || IsNoLine(); } |
| 596 |
no outgoing calls
no test coverage detected