From 86633d76fb3f1203d870cf640b127f0bfacf232f Mon Sep 17 00:00:00 2001 From: stephey Date: Thu, 12 Aug 2010 23:34:02 +0000 Subject: [PATCH] fixed some include bugs --- Robust/src/Runtime/oooJava/hashRCR.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Robust/src/Runtime/oooJava/hashRCR.c b/Robust/src/Runtime/oooJava/hashRCR.c index fe9a0f2b..7734e65c 100644 --- a/Robust/src/Runtime/oooJava/hashRCR.c +++ b/Robust/src/Runtime/oooJava/hashRCR.c @@ -1,6 +1,7 @@ -#include "HashRCR.h" -#include "strings.h" -#include "tm.h" +#include "hashRCR.h" +#include +#define likely(x) __builtin_expect((x),1) +#define unlikely(x) __builtin_expect((x),0) //Smallest Object Size with 1 ptr is 32bytes on on 64-bit machine and 24bytes on 32-bit machine #ifdef BIT64 -- 2.34.1