mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-27 17:53:58 +00:00
* fix #16428 vmops now works for generic procs * remove duplication
This commit is contained in:
@@ -567,6 +567,8 @@ else: # JS
|
||||
func tanh*[T: float32|float64](x: T): T {.importc: "Math.tanh", nodecl.}
|
||||
|
||||
func arcsin*[T: float32|float64](x: T): T {.importc: "Math.asin", nodecl.}
|
||||
# keep this as generic or update test in `tvmops.nim` to make sure we
|
||||
# keep testing that generic importc procs work
|
||||
func arccos*[T: float32|float64](x: T): T {.importc: "Math.acos", nodecl.}
|
||||
func arctan*[T: float32|float64](x: T): T {.importc: "Math.atan", nodecl.}
|
||||
func arctan2*[T: float32|float64](y, x: T): T {.importc: "Math.atan2", nodecl.}
|
||||
|
||||
Reference in New Issue
Block a user