[PATCH] D15883: Add ARM EHABI-related constants to unwind.h.

Saleem Abdulrasool via cfe-commits cfe-commits at lists.llvm.org
Mon Feb 15 15:06:50 PST 2016


compnerd added a comment.

It was on the mailing list, which won't show up on phabricator (email is still the defacto review system).

Why not create a local macro and use that to make this easier to read?

  #if defined(__arm__) && !defined(__USING_SJLJ_EXCEPTIONS__) && !defined(__ARM_DWARF_EH__)
  #define _UNWIND_USE_AEABI 1
  #else
  #define _UNWIND_USE_AEABI 0
  #endif


http://reviews.llvm.org/D15883





More information about the cfe-commits mailing list