Exp of sum of logs

Specification

?
\[\begin{array}{l} \\ e^{\log a + \log b} \end{array} \]
(FPCore (a b) :precision binary64 (exp (+ (log a) (log b))))
double code(double a, double b) {
	return exp((log(a) + log(b)));
}
real(8) function code(a, b)
    real(8), intent (in) :: a
    real(8), intent (in) :: b
    code = exp((log(a) + log(b)))
end function
public static double code(double a, double b) {
	return Math.exp((Math.log(a) + Math.log(b)));
}
def code(a, b):
	return math.exp((math.log(a) + math.log(b)))
function code(a, b)
	return exp(Float64(log(a) + log(b)))
end
function tmp = code(a, b)
	tmp = exp((log(a) + log(b)));
end
code[a_, b_] := N[Exp[N[(N[Log[a], $MachinePrecision] + N[Log[b], $MachinePrecision]), $MachinePrecision]], $MachinePrecision]
\begin{array}{l}

\\
e^{\log a + \log b}
\end{array}

Reproduce

?
herbie shell --seed 2024261 
(FPCore (a b)
  :name "Exp of sum of logs"
  :precision binary64

  :alt
  (! :herbie-platform default (* a b))

  (exp (+ (log a) (log b))))

Please file a bug report with this information.

Backtrace

run-egg: cannot find proof; start and end are not equal. start: (exp.f64 (+.f64 (log.f64 a) (log.f64 b))) end: #s(literal -1 binary64)LC
add-soundiness/home/nightlies/herbie/artem-batch-finish-rewrite/src/core/soundiness.rkt1400
extract!/home/nightlies/herbie/artem-batch-finish-rewrite/src/core/mainloop.rkt790
run-improve!/home/nightlies/herbie/artem-batch-finish-rewrite/src/core/mainloop.rkt450
get-alternatives/report/home/nightlies/herbie/artem-batch-finish-rewrite/src/api/sandbox.rkt1860
(unnamed)/home/nightlies/herbie/artem-batch-finish-rewrite/src/api/sandbox.rkt2826
(unnamed)/usr/share/racket/pkgs/profile-lib/main.rkt4010
profile-thunk/usr/share/racket/pkgs/profile-lib/main.rkt90
(unnamed)/usr/share/racket/collects/racket/engine.rkt4224