diff options
Diffstat (limited to 'src/gallium/auxiliary')
| -rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_init.c | 8 | 
1 files changed, 1 insertions, 7 deletions
| diff --git a/src/gallium/auxiliary/gallivm/lp_bld_init.c b/src/gallium/auxiliary/gallivm/lp_bld_init.c index 5598ca5c48..0b9a6f745f 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_init.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_init.c @@ -145,13 +145,7 @@ lp_build_init(void)           LLVMAddCFGSimplificationPass(lp_build_pass);           LLVMAddPromoteMemoryToRegisterPass(lp_build_pass);           LLVMAddConstantPropagationPass(lp_build_pass); -         if(util_cpu_caps.has_sse4_1) { -            /* FIXME: There is a bug in this pass, whereby the combination of fptosi -             * and sitofp (necessary for trunc/floor/ceil/round implementation) -             * somehow becomes invalid code. -             */ -            LLVMAddInstructionCombiningPass(lp_build_pass); -         } +         LLVMAddInstructionCombiningPass(lp_build_pass);           LLVMAddGVNPass(lp_build_pass);        } else {           /* We need at least this pass to prevent the backends to fail in | 
