summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx04
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2009-06-17 22:58:19 +0000
committerChris Johns <chrisj@rtems.org>2009-06-17 22:58:19 +0000
commitf9eb21d8639910bde675e1365cfd94432c5b8588 (patch)
tree319c258c3a6d2d526002572b3795ce4182e0b315 /testsuites/psxtests/psx04
parent2009-06-18 Chris Johns <chrisj@rtems.org> (diff)
downloadrtems-f9eb21d8639910bde675e1365cfd94432c5b8588.tar.bz2
2009-06-18 Chris Johns <chrisj@rtems.org>
* psx04/task3.c: Declare unions volatile to workaround the H8300 gcc bug.
Diffstat (limited to 'testsuites/psxtests/psx04')
-rw-r--r--testsuites/psxtests/psx04/task3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/psxtests/psx04/task3.c b/testsuites/psxtests/psx04/task3.c
index 8f3990ef31..da4fb44e53 100644
--- a/testsuites/psxtests/psx04/task3.c
+++ b/testsuites/psxtests/psx04/task3.c
@@ -27,7 +27,7 @@ void *Task_3(
unsigned int remaining;
int status;
int sig;
- union sigval value;
+ volatile union sigval value; /* should be removed once the H8300 target is fixed */
sigset_t mask;
siginfo_t info;