The macro/function alloca() is declared in <alloca.h> and in our
configuration it does not get included transitively from other
headers.
This patch adds #include <alloca.h> when alloca() is used.
Differential D90615
[libunwind] Add missing #include <alloca.h> miyuki on Nov 2 2020, 7:52 AM. Authored by
Details
The macro/function alloca() is declared in <alloca.h> and in our This patch adds #include <alloca.h> when alloca() is used.
Diff Detail
|
Couldn't this simply be changed to __builtin_alloca() to avoid the header dependency?