sptests/splinkersets01: Fix for small-data area

This commit is contained in:
Sebastian Huber
2016-08-10 09:54:13 +02:00
parent b0f08c83e2
commit 21d736554c
2 changed files with 12 additions and 12 deletions

View File

@@ -22,10 +22,10 @@ RTEMS_LINKER_RWSET_ITEM_ORDERED(test_rw, const int *, a1, 1) = &a[1];
RTEMS_LINKER_ROSET_ITEM_ORDERED(test_ro, const int *, ca2, OC) = &ca[2];
RTEMS_LINKER_RWSET_CONTENT(test_content_rw, int content_rw_1);
RTEMS_LINKER_RWSET_CONTENT(test_content_rw, char content_rw_2);
RTEMS_LINKER_RWSET_CONTENT(test_content_rw, char content_rw_3);
int content_rw_1;
char content_rw_2;
char content_rw_3;
RTEMS_LINKER_ROSET_CONTENT(test_content_ro, const int content_ro_1);
RTEMS_LINKER_ROSET_CONTENT(test_content_ro, const char content_ro_2);
RTEMS_LINKER_ROSET_CONTENT(test_content_ro, const char content_ro_3);
const int content_ro_1;
const char content_ro_2;
const char content_ro_3;

View File

@@ -37,13 +37,13 @@ RTEMS_LINKER_RWSET_ITEM_DECLARE(test_rw, const int *, a1);
RTEMS_LINKER_ROSET_ITEM_DECLARE(test_ro, const int *, ca2);
extern int content_rw_1;
extern char content_rw_2;
extern char content_rw_3;
RTEMS_LINKER_RWSET_CONTENT(test_content_rw, extern int content_rw_1);
RTEMS_LINKER_RWSET_CONTENT(test_content_rw, extern char content_rw_2);
RTEMS_LINKER_RWSET_CONTENT(test_content_rw, extern char content_rw_3);
extern const int content_ro_1;
extern const char content_ro_2;
extern const char content_ro_3;
RTEMS_LINKER_ROSET_CONTENT(test_content_ro, extern const int content_ro_1);
RTEMS_LINKER_ROSET_CONTENT(test_content_ro, extern const char content_ro_2);
RTEMS_LINKER_ROSET_CONTENT(test_content_ro, extern const char content_ro_3);
#ifdef __cplusplus
}