From: George Kyriazis Date: Thu, 15 Mar 2018 22:49:54 +0000 (-0500) Subject: swr/rast: Fix name mangling for LLVM pow intrinsic X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=67c8bb4db7e2d5a294a1e362d8b242f38767da1e;p=mesa.git swr/rast: Fix name mangling for LLVM pow intrinsic Reviewed-by: Bruce Cherniak --- diff --git a/src/gallium/drivers/swr/rasterizer/codegen/gen_llvm_ir_macros.py b/src/gallium/drivers/swr/rasterizer/codegen/gen_llvm_ir_macros.py index 024558458a6..324f24a3557 100644 --- a/src/gallium/drivers/swr/rasterizer/codegen/gen_llvm_ir_macros.py +++ b/src/gallium/drivers/swr/rasterizer/codegen/gen_llvm_ir_macros.py @@ -79,7 +79,7 @@ llvm_intrinsics = [ ['LOG2', 'log2', ['a'], ['a']], ['FABS', 'fabs', ['a'], ['a']], ['EXP2', 'exp2', ['a'], ['a']], - ['POW', 'pow', ['a', 'b'], ['a', 'b']] + ['POW', 'pow', ['a', 'b'], ['a']] ] this_dir = os.path.dirname(os.path.abspath(__file__))