Make local function static.

This commit is contained in:
emaste 2012-10-11 21:24:07 +00:00
parent a4ce9b8e4a
commit f0db6be72a

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));
}