tile: use const instead of __const.

This commit is contained in:
Chris Metcalf 2012-01-31 11:46:09 -05:00
parent 975e4ecfd4
commit 5dfe919c9f
3 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2012-01-31 Chris Metcalf <cmetcalf@tilera.com>
* sysdeps/tile/bits/fenv.h: Use const instead of __const.
* sysdeps/unix/sysv/linux/tile/sys/cachectl.h: Likewise.
2012-01-31 Chris Metcalf <cmetcalf@tilera.com>
* sysdeps/tile/sysdep.h: Use <feedback.h> not <feedback-asm.h>

View File

@ -40,4 +40,4 @@ typedef unsigned int fexcept_t;
typedef unsigned int fenv_t;
/* If the default argument is used we use this value. */
#define FE_DFL_ENV ((__const fenv_t *) -1l)
#define FE_DFL_ENV ((const fenv_t *) -1l)

View File

@ -28,9 +28,9 @@
__BEGIN_DECLS
#ifdef __USE_MISC
extern int cacheflush (void *__addr, __const int __nbytes, __const int __op) __THROW;
extern int cacheflush (void *__addr, const int __nbytes, const int __op) __THROW;
#endif
extern int _flush_cache (char *__addr, __const int __nbytes, __const int __op) __THROW;
extern int _flush_cache (char *__addr, const int __nbytes, const int __op) __THROW;
__END_DECLS