Files
third_party_elfutils/libelf
Chih-Hung Hsieh 7eff36d5da Do without union of variable length arrays.
Prepare to compile with clang.

A union like
  { T32 a32[n]; T64 a64[n]; } u;
is expanded to
  size_t nbytes = n * MAX(sizeof(T32), sizeof(T64));
  void *data = malloc(nbytes);
  T32 (*a32)[n] = data;
  T64 (*a64)[n] = data;

Signed-off-by: Chih-Hung Hsieh <chh@google.com>
2015-10-07 22:44:41 +02:00
..
2015-09-23 15:50:00 +02:00
2015-04-28 14:41:12 +02:00
2013-08-28 18:58:10 +02:00
2015-10-06 17:50:10 -07:00