swr/rast: add more llvm intrinsics

Reviewed-by: Bruce Cherniak <bruce.cherniak@intel.com>
This commit is contained in:
Alok Hota 2018-06-05 00:16:27 -05:00
parent 0e3a348bec
commit 2729d847ce
1 changed files with 3 additions and 0 deletions

View File

@ -76,6 +76,9 @@ llvm_intrinsics = [
['LOG2', 'log2', ['a'], ['a']],
['FABS', 'fabs', ['a'], ['a']],
['EXP2', 'exp2', ['a'], ['a']],
['COS', 'cos', ['a'], ['a']],
['SIN', 'sin', ['a'], ['a']],
['FLOOR', 'floor', ['a'], ['a']],
['POW', 'pow', ['a', 'b'], ['a']]
]