summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/linkersets.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-10-13 07:09:49 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-10-13 07:15:10 +0200
commitf5eff007a44ad20c2a420b66903508e9d6c3b066 (patch)
treeb5cfd3714b65c65d96297051e0f9342d91beabd1 /cpukit/score/include/rtems/linkersets.h
parentlibmisc/xz: Add xz decompression. (diff)
downloadrtems-f5eff007a44ad20c2a420b66903508e9d6c3b066.tar.bz2
score: Rename RTEMS_OBFUSCATE_POINTER()
The inline asm construct works for everything which fits into a register. Close #2790.
Diffstat (limited to 'cpukit/score/include/rtems/linkersets.h')
-rw-r--r--cpukit/score/include/rtems/linkersets.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/include/rtems/linkersets.h b/cpukit/score/include/rtems/linkersets.h
index b790fa5c24..390d2cba34 100644
--- a/cpukit/score/include/rtems/linkersets.h
+++ b/cpukit/score/include/rtems/linkersets.h
@@ -30,13 +30,13 @@ extern "C" {
#define RTEMS_LINKER_SET_ASSIGN_BEGIN( set, item ) \
do { \
item = _LINKER_SET_BEGIN( set ); \
- RTEMS_OBFUSCATE_POINTER( item ); \
+ RTEMS_OBFUSCATE_VARIABLE( item ); \
} while ( 0 )
#define RTEMS_LINKER_SET_ASSIGN_END( set, item ) \
do { \
item = _LINKER_SET_END( set ); \
- RTEMS_OBFUSCATE_POINTER( item ); \
+ RTEMS_OBFUSCATE_VARIABLE( item ); \
} while ( 0 )
#define RTEMS_LINKER_SET_SIZE( set ) \