swr/rast: Fix name mangling for LLVM pow intrinsic

Reviewed-by: Bruce Cherniak <bruce.cherniak@intel.com>
This commit is contained in:
George Kyriazis
2018-03-15 17:49:54 -05:00
parent 7a5054aa1c
commit 67c8bb4db7
@@ -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__))