mirror of
https://github.com/corda/corda.git
synced 2025-06-18 23:28:21 +00:00
store frame data on the stack, not the heap
This commit is contained in:
@ -8,6 +8,14 @@
|
||||
#include "stdio.h"
|
||||
#include "types.h"
|
||||
|
||||
#ifdef __i386__
|
||||
# define LD "%d"
|
||||
# define LLD "%lld"
|
||||
#elif defined __x86_64__
|
||||
# define LD "%ld"
|
||||
# define LLD "%ld"
|
||||
#endif
|
||||
|
||||
#define NO_RETURN __attribute__((noreturn))
|
||||
|
||||
#define LIKELY(v) __builtin_expect((v) != 0, true)
|
||||
|
Reference in New Issue
Block a user