diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2012-01-31 11:46:09 -0500 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2012-01-31 11:46:09 -0500 |
commit | 5dfe919c9fb31bdabc5352ee0b91863b30cbfad1 (patch) | |
tree | 3fe5199d8953f2c34f8c569bfecb77848fb193ab | |
parent | 975e4ecfd450f9c249cb47368d170630eb1bfd2f (diff) | |
download | glibc-5dfe919c9fb31bdabc5352ee0b91863b30cbfad1.tar glibc-5dfe919c9fb31bdabc5352ee0b91863b30cbfad1.tar.gz glibc-5dfe919c9fb31bdabc5352ee0b91863b30cbfad1.tar.bz2 glibc-5dfe919c9fb31bdabc5352ee0b91863b30cbfad1.zip |
tile: use const instead of __const.
-rw-r--r-- | ChangeLog.tile | 5 | ||||
-rw-r--r-- | sysdeps/tile/bits/fenv.h | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/tile/sys/cachectl.h | 4 |
3 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog.tile b/ChangeLog.tile index 09495c43c9..095b4fe8b3 100644 --- a/ChangeLog.tile +++ b/ChangeLog.tile @@ -1,5 +1,10 @@ 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> to reflect change from gcc community giveback. diff --git a/sysdeps/tile/bits/fenv.h b/sysdeps/tile/bits/fenv.h index 56fe6fd911..0e12c04034 100644 --- a/sysdeps/tile/bits/fenv.h +++ b/sysdeps/tile/bits/fenv.h @@ -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) diff --git a/sysdeps/unix/sysv/linux/tile/sys/cachectl.h b/sysdeps/unix/sysv/linux/tile/sys/cachectl.h index 72d9e21381..308aefbbe5 100644 --- a/sysdeps/unix/sysv/linux/tile/sys/cachectl.h +++ b/sysdeps/unix/sysv/linux/tile/sys/cachectl.h @@ -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 |