HiPE stands for High-Performance Erlang. It is a feature to compile Erlang into native code.
Questions tagged [hipe]
16 questions
0
votes
1 answer
Why does the following code cause the Erlang HiPE compiler crash?
The code is following:
-module(hipe_crash).
-export([f/6]).
f(A, B, C, D, E, L) ->
lists:foldl(fun (X, P) ->
AVar = case A of
0 -> 1 / D;
N -> N / (C - B)
end,
BVar = case E of
…

user1535183
- 31
- 2