diff options
author | George Kyriazis <[email protected]> | 2018-03-15 17:49:54 -0500 |
---|---|---|
committer | George Kyriazis <[email protected]> | 2018-04-18 10:51:38 -0500 |
commit | 67c8bb4db7e2d5a294a1e362d8b242f38767da1e (patch) | |
tree | 64e751bcdbcd0994d86e47a9948b9f657029b385 /src/gallium/drivers | |
parent | 7a5054aa1cc4db0e495af0eee327967886dcd4f7 (diff) |
swr/rast: Fix name mangling for LLVM pow intrinsic
Reviewed-by: Bruce Cherniak <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/swr/rasterizer/codegen/gen_llvm_ir_macros.py | 2 |
1 files changed, 1 insertions, 1 deletions
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__)) |