Make local function static.

This commit is contained in:
Ed Maste 2012-10-11 21:24:07 +00:00
parent 3d09489774
commit a5450ddfbd

View File

@ -49,7 +49,7 @@ int verbose = 0;
__FUNCTION__, __LINE__, ##__VA_ARGS__); \
} while (0)
inline void prefetch (const void *x)
static inline void prefetch (const void *x)
{
__asm volatile("prefetcht0 %0" :: "m" (*(const unsigned long *)x));
}