diff options
author | Olivier Hainque <hainque@adacore.com> | 2012-06-01 16:41:25 +0000 |
---|---|---|
committer | Olivier Hainque <hainque@gcc.gnu.org> | 2012-06-01 16:41:25 +0000 |
commit | 676bd9a422b9641eeba45fc50837367ddfe82749 (patch) | |
tree | ad1f50fb37360086c227c374ffbbb999028c1b72 | |
parent | 5714705f1189d42e55c4209e2d2485c9d3bea1cd (diff) | |
download | gcc-676bd9a422b9641eeba45fc50837367ddfe82749.zip gcc-676bd9a422b9641eeba45fc50837367ddfe82749.tar.gz gcc-676bd9a422b9641eeba45fc50837367ddfe82749.tar.bz2 |
vxworks.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Restore the "do {" part of the do-while(0) loop.
* config/rs6000/vxworks.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Restore the
"do {" part of the do-while(0) loop.
From-SVN: r188114
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/rs6000/vxworks.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 950ac53..4b80223 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2012-06-01 Olivier Hainque <hainque@adacore.com> + + * config/rs6000/vxworks.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Restore + the "do {" part of the do-while(0) loop. + 2012-06-01 Yuri Rumyantsev <yuri.s.rumyantsev@intel.com> * config/i386/i386.c (x86_sched_reorder): New function. diff --git a/gcc/config/rs6000/vxworks.h b/gcc/config/rs6000/vxworks.h index dc311d2..6169f16 100644 --- a/gcc/config/rs6000/vxworks.h +++ b/gcc/config/rs6000/vxworks.h @@ -124,6 +124,7 @@ VXWORKS_ADDITIONAL_CPP_SPEC #undef SUBSUBTARGET_OVERRIDE_OPTIONS #define SUBSUBTARGET_OVERRIDE_OPTIONS \ + do { \ if (!global_options_set.x_g_switch_value) \ g_switch_value = SDATA_DEFAULT_SIZE; \ VXWORKS_OVERRIDE_OPTIONS; \ |