mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2025-01-24 01:00:29 +01:00
(IA64_UNW_FLAG_MASK): Use "ULL" postfix to avoid compiler warning on 32-bit platforms.
(IA64_UNW_FLAG_OSMASK): Likewise. (IA64_UNW_FLAG_EHANDLER): Likewise. (IA64_UNW_FLAG_UHANDLER): Likewise. (IA64_UNW_LENGTH): Likewise. (Logical change 1.214)
This commit is contained in:
parent
40cba8cd59
commit
a2cd0592ca
1 changed files with 6 additions and 6 deletions
|
@ -34,12 +34,12 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|||
#include "internal.h"
|
||||
#include "rse.h"
|
||||
|
||||
#define IA64_UNW_VER(x) ((x) >> 48)
|
||||
#define IA64_UNW_FLAG_MASK 0x0000ffff00000000
|
||||
#define IA64_UNW_FLAG_OSMASK 0x0000f00000000000
|
||||
#define IA64_UNW_FLAG_EHANDLER(x) ((x) & 0x0000000100000000L)
|
||||
#define IA64_UNW_FLAG_UHANDLER(x) ((x) & 0x0000000200000000L)
|
||||
#define IA64_UNW_LENGTH(x) ((x) & 0x00000000ffffffffL)
|
||||
#define IA64_UNW_VER(x) ((x) >> 48)
|
||||
#define IA64_UNW_FLAG_MASK ((unw_word_t) 0x0000ffff00000000ULL)
|
||||
#define IA64_UNW_FLAG_OSMASK ((unw_word_t) 0x0000f00000000000ULL)
|
||||
#define IA64_UNW_FLAG_EHANDLER(x) ((x) & (unw_word_t) 0x0000000100000000ULL)
|
||||
#define IA64_UNW_FLAG_UHANDLER(x) ((x) & (unw_word_t) 0x0000000200000000ULL)
|
||||
#define IA64_UNW_LENGTH(x) ((x) & (unw_word_t) 0x00000000ffffffffULL)
|
||||
|
||||
#ifdef MIN
|
||||
# undef MIN
|
||||
|
|
Loading…
Reference in a new issue