summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGeorge Kyriazis <george.kyriazis@intel.com>2018-03-15 17:49:54 -0500
committerGeorge Kyriazis <george.kyriazis@intel.com>2018-04-18 10:51:38 -0500
commit67c8bb4db7e2d5a294a1e362d8b242f38767da1e (patch)
tree64e751bcdbcd0994d86e47a9948b9f657029b385 /src
parent7a5054aa1cc4db0e495af0eee327967886dcd4f7 (diff)
swr/rast: Fix name mangling for LLVM pow intrinsic
Reviewed-by: Bruce Cherniak <bruce.cherniak@intel.com>
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/swr/rasterizer/codegen/gen_llvm_ir_macros.py2
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 024558458a..324f24a355 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__))