remove unused new_cjump()

This commit is contained in:
Brian
2007-03-08 11:29:22 -07:00
parent cce4e50569
commit ec89aba7c6
-14
View File
@@ -454,20 +454,6 @@ new_float_literal(const float v[4])
return n;
}
/**
* Conditional jump.
* \param zeroOrOne indicates if the jump is to be taken on zero, or non-zero
* condition code state.
*/
static slang_ir_node *
new_cjump(slang_label *dest, GLuint zeroOrOne)
{
slang_ir_node *n = new_node0(zeroOrOne ? IR_CJUMP1 : IR_CJUMP0);
if (n)
n->Label = dest;
return n;
}
/**
* Unconditional jump.
*/