diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-09-06 15:07:09 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-09-06 15:07:09 +0200 |
commit | ebb6faaafae68ade1685169e3f23a6870ed63102 (patch) | |
tree | bd2a46378d5d0c491e6e9ed5f4c8e364b95888eb /gcc/ada/sysdep.c | |
parent | 604352863ceed2abf06f77f95184d6e46fc62501 (diff) | |
download | gcc-ebb6faaafae68ade1685169e3f23a6870ed63102.tar.gz |
[multiple changes]
2011-09-06 Jerome Guitton <guitton@adacore.com>
* sysdep.c (__gnat_get_task_options): Disable VX_SPE_TASK
on vThreads.
2011-09-06 Thomas Quinot <quinot@adacore.com>
* s-solita.adb: Minor reformatting.
2011-09-06 Ed Schonberg <schonberg@adacore.com>
* sem_ch6.adb (Analyze_Subprogram_Body_Helper): The body that
is a rewriting of an expression function does not freeze previous
entities.
2011-09-06 Robert Dewar <dewar@adacore.com>
* impunit.adb (Is_Known_Unit): Fix bad handling of Ada 2012 case
From-SVN: r178593
Diffstat (limited to 'gcc/ada/sysdep.c')
-rw-r--r-- | gcc/ada/sysdep.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/ada/sysdep.c b/gcc/ada/sysdep.c index 4d383fd0608..696630ec298 100644 --- a/gcc/ada/sysdep.c +++ b/gcc/ada/sysdep.c @@ -911,7 +911,8 @@ __gnat_get_task_options (void) /* Force VX_FP_TASK because it is almost always required */ options |= VX_FP_TASK; -#if defined (__SPE__) && (! defined (__VXWORKSMILS__)) +#if defined (__SPE__) && (! defined (__VXWORKSMILS__)) \ + && (! defined (VTHREADS)) options |= VX_SPE_TASK; #endif |