gallivm: added lp_build_const_int32() helper

This commit is contained in:
Brian Paul 2010-07-20 18:45:45 -06:00
parent c4889fa5f0
commit b0636f78aa

View file

@ -107,4 +107,12 @@ lp_build_const_mask_aos(struct lp_type type,
const boolean cond[4]);
static INLINE LLVMValueRef
lp_build_const_int32(int i)
{
return LLVMConstInt(LLVMInt32Type(), i, 0);
}
#endif /* !LP_BLD_CONST_H */