| 250 | } |
| 251 | |
| 252 | AR_ExpNode *AR_EXP_NewConstOperandNode(SIValue constant) { |
| 253 | AR_ExpNode *node = _AR_EXP_InitializeOperand(AR_EXP_CONSTANT); |
| 254 | node->operand.constant = constant; |
| 255 | return node; |
| 256 | } |
| 257 | |
| 258 | AR_ExpNode *AR_EXP_NewParameterOperandNode |
| 259 | ( |