File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 9
9
# math.jl
10
10
@device_override @noinline Base. Math. throw_complex_domainerror (f:: Symbol , x) =
11
11
@print_and_throw c " This operation requires a complex input to return a complex result"
12
- @device_override @noinline Base. Math. throw_exp_domainerror (f :: Symbol , x) =
12
+ @device_override @noinline Base. Math. throw_exp_domainerror (x) =
13
13
@print_and_throw c " Exponentiation yielding a complex result requires a complex argument"
14
14
15
15
# intfuncs.jl
25
25
# checked.jl
26
26
@device_override @noinline Base. Checked. throw_overflowerr_binaryop (op, x, y) =
27
27
@print_and_throw c " Binary operation overflowed"
28
- @device_override @noinline Base. Checked. throw_overflowerr_negation (op, x, y ) =
28
+ @device_override @noinline Base. Checked. throw_overflowerr_negation (x ) =
29
29
@print_and_throw c " Negation overflowed"
30
30
@device_override function Base. Checked. checked_abs (x:: Base.Checked.SignedInt )
31
31
r = ifelse (x < 0 , - x, x)
You can’t perform that action at this time.
0 commit comments