diff options
author | James Benton <[email protected]> | 2012-05-30 14:36:44 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2012-11-27 16:23:04 +0000 |
commit | 978df710f22562ae766b1fe60e8ebf40d20a6e6b (patch) | |
tree | 302c82281e077d24e64db0eeb199346f07daa645 /src | |
parent | 9bc9895c4a608e475f241d2c16dc88e40ea702d7 (diff) |
gallivm: Fix bug in lp_build_one which would incorrectly return a vector for length 1.
Signed-off-by: José Fonseca <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_const.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_const.c b/src/gallium/auxiliary/gallivm/lp_bld_const.c index 003901aabe6..24ed23adc35 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_const.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_const.c @@ -269,7 +269,7 @@ lp_build_one(struct gallivm_state *gallivm, struct lp_type type) else { /* special case' -- 1.0 for normalized types is more easily attained if * we start with a vector consisting of all bits set */ - LLVMTypeRef vec_type = LLVMVectorType(elem_type, type.length); + LLVMTypeRef vec_type = lp_build_vec_type(gallivm, type); LLVMValueRef vec = LLVMConstAllOnes(vec_type); #if 0 |