moves likely annotation
This commit is contained in:
parent
24449f1c0f
commit
fb4012fbd1
|
@ -44,6 +44,14 @@
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
#include <util/logging.h>
|
#include <util/logging.h>
|
||||||
|
|
||||||
|
#if defined(__GNUC__)
|
||||||
|
#define likely(x) ::__builtin_expect(!!(x), 1)
|
||||||
|
#define unlikely(x) ::__builtin_expect(!!(x), 0)
|
||||||
|
#else
|
||||||
|
#define likely(x) x
|
||||||
|
#define unlikely(x) x
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace iss {
|
namespace iss {
|
||||||
namespace arch {
|
namespace arch {
|
||||||
|
|
||||||
|
|
|
@ -58,14 +58,6 @@
|
||||||
|
|
||||||
#include <iss/semihosting/semihosting.h>
|
#include <iss/semihosting/semihosting.h>
|
||||||
|
|
||||||
#if defined(__GNUC__)
|
|
||||||
#define likely(x) __builtin_expect(!!(x), 1)
|
|
||||||
#define unlikely(x) __builtin_expect(!!(x), 0)
|
|
||||||
#else
|
|
||||||
#define likely(x) x
|
|
||||||
#define unlikely(x) x
|
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace iss {
|
namespace iss {
|
||||||
namespace arch {
|
namespace arch {
|
||||||
|
|
||||||
|
|
|
@ -57,14 +57,6 @@
|
||||||
|
|
||||||
#include <iss/semihosting/semihosting.h>
|
#include <iss/semihosting/semihosting.h>
|
||||||
|
|
||||||
#if defined(__GNUC__)
|
|
||||||
#define likely(x) __builtin_expect(!!(x), 1)
|
|
||||||
#define unlikely(x) __builtin_expect(!!(x), 0)
|
|
||||||
#else
|
|
||||||
#define likely(x) x
|
|
||||||
#define unlikely(x) x
|
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace iss {
|
namespace iss {
|
||||||
namespace arch {
|
namespace arch {
|
||||||
|
|
||||||
|
|
|
@ -57,14 +57,6 @@
|
||||||
|
|
||||||
#include <iss/semihosting/semihosting.h>
|
#include <iss/semihosting/semihosting.h>
|
||||||
|
|
||||||
#if defined(__GNUC__)
|
|
||||||
#define likely(x) __builtin_expect(!!(x), 1)
|
|
||||||
#define unlikely(x) __builtin_expect(!!(x), 0)
|
|
||||||
#else
|
|
||||||
#define likely(x) x
|
|
||||||
#define unlikely(x) x
|
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace iss {
|
namespace iss {
|
||||||
namespace arch {
|
namespace arch {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue