summaryrefslogtreecommitdiff
path: root/sal/rtl/source/alloc_impl.h
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2011-10-31 19:02:52 +0100
committerStephan Bergmann <sbergman@redhat.com>2011-11-01 17:10:14 +0100
commit2a6aeea94de022b364fa5943793cdc1922df84f1 (patch)
tree5b5b47365f21bb514e785a27d61eb568a2609313 /sal/rtl/source/alloc_impl.h
parent76af7256e04ac5a24205f76663fc20aa810a9c3d (diff)
Removed some obsolete register annotations.
Diffstat (limited to 'sal/rtl/source/alloc_impl.h')
-rw-r--r--sal/rtl/source/alloc_impl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/rtl/source/alloc_impl.h b/sal/rtl/source/alloc_impl.h
index 8ea038496dfa..3b63f07fe1f8 100644
--- a/sal/rtl/source/alloc_impl.h
+++ b/sal/rtl/source/alloc_impl.h
@@ -98,7 +98,7 @@ extern "C" {
static RTL_MEMORY_INLINE int
highbit(sal_Size n)
{
- register int k = 1;
+ int k = 1;
if (n == 0)
return (0);
@@ -131,7 +131,7 @@ highbit(sal_Size n)
static RTL_MEMORY_INLINE int
lowbit(sal_Size n)
{
- register int k = 1;
+ int k = 1;
if (n == 0)
return (0);