From 93684f77c1c8dccaf4ee6cc2f72b014f09ae4758 Mon Sep 17 00:00:00 2001 From: Samy Al Bahra Date: Fri, 12 Oct 2012 11:30:05 -0400 Subject: [PATCH] ck_pr: Use CK_CC_INLINE instead of inline keyword for ck_pr_barrier. --- include/gcc/ck_pr.h | 2 +- include/gcc/ppc/ck_pr.h | 2 +- include/gcc/ppc64/ck_pr.h | 2 +- include/gcc/sparcv9/ck_pr.h | 2 +- include/gcc/x86/ck_pr.h | 2 +- include/gcc/x86_64/ck_pr.h | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/include/gcc/ck_pr.h b/include/gcc/ck_pr.h index 353d08b..a29b138 100644 --- a/include/gcc/ck_pr.h +++ b/include/gcc/ck_pr.h @@ -122,7 +122,7 @@ CK_PR_FENCE(memory) #undef CK_PR_FENCE -static inline void +CK_CC_INLINE static void ck_pr_barrier(void) { diff --git a/include/gcc/ppc/ck_pr.h b/include/gcc/ppc/ck_pr.h index c063594..49738e1 100644 --- a/include/gcc/ppc/ck_pr.h +++ b/include/gcc/ppc/ck_pr.h @@ -86,7 +86,7 @@ CK_PR_FENCE(memory, "sync") #undef CK_PR_FENCE -static inline void +CK_CC_INLINE static void ck_pr_barrier(void) { diff --git a/include/gcc/ppc64/ck_pr.h b/include/gcc/ppc64/ck_pr.h index 9896077..8f57a3b 100644 --- a/include/gcc/ppc64/ck_pr.h +++ b/include/gcc/ppc64/ck_pr.h @@ -89,7 +89,7 @@ CK_PR_FENCE(memory, "sync") #undef CK_PR_FENCE -static inline void +CK_CC_INLINE static void ck_pr_barrier(void) { diff --git a/include/gcc/sparcv9/ck_pr.h b/include/gcc/sparcv9/ck_pr.h index 9c038ea..ba2fc41 100644 --- a/include/gcc/sparcv9/ck_pr.h +++ b/include/gcc/sparcv9/ck_pr.h @@ -88,7 +88,7 @@ CK_PR_FENCE(memory, "membar #LoadLoad | #LoadStore | #StoreStore | #StoreLoad") #undef CK_PR_FENCE -static inline void +CK_CC_INLINE static void ck_pr_barrier(void) { diff --git a/include/gcc/x86/ck_pr.h b/include/gcc/x86/ck_pr.h index c85a49e..d3e8994 100644 --- a/include/gcc/x86/ck_pr.h +++ b/include/gcc/x86/ck_pr.h @@ -101,7 +101,7 @@ CK_PR_FENCE(memory, "mfence") #undef CK_PR_FENCE -static inline void +CK_CC_INLINE static void ck_pr_barrier(void) { diff --git a/include/gcc/x86_64/ck_pr.h b/include/gcc/x86_64/ck_pr.h index 8d97bab..a48fd95 100644 --- a/include/gcc/x86_64/ck_pr.h +++ b/include/gcc/x86_64/ck_pr.h @@ -100,7 +100,7 @@ CK_PR_FENCE(memory, "mfence") #undef CK_PR_FENCE -static inline void +CK_CC_INLINE static void ck_pr_barrier(void) {