From b0636f78aa63aed2a68e86e7770c2a91c80bbb80 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 20 Jul 2010 18:45:45 -0600 Subject: gallivm: added lp_build_const_int32() helper --- src/gallium/auxiliary/gallivm/lp_bld_const.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/gallium/auxiliary/gallivm') diff --git a/src/gallium/auxiliary/gallivm/lp_bld_const.h b/src/gallium/auxiliary/gallivm/lp_bld_const.h index d46b9f882b..7ee8fff140 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_const.h +++ b/src/gallium/auxiliary/gallivm/lp_bld_const.h @@ -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 */ -- cgit v1.2.3