diff options
author | Janis Johnson <janis187@us.ibm.com> | 2008-12-02 00:18:56 +0000 |
---|---|---|
committer | Janis Johnson <janis@gcc.gnu.org> | 2008-12-02 00:18:56 +0000 |
commit | 86a182bf47e6b48b2d0f5e1b858db16bed49c8cb (patch) | |
tree | 6cd29ec4b02588c18325b36516fe4f2c332eadb9 | |
parent | 8be321ff8268222cd783f1202b7c27d888e7ce46 (diff) | |
download | gcc-86a182bf47e6b48b2d0f5e1b858db16bed49c8cb.zip gcc-86a182bf47e6b48b2d0f5e1b858db16bed49c8cb.tar.gz gcc-86a182bf47e6b48b2d0f5e1b858db16bed49c8cb.tar.bz2 |
re PR libgomp/38270 (libgomp test failures due to missing memory barrier)
PR libgomp/38270
* config/linux/powerpc/mutex.h: New.
From-SVN: r142341
-rw-r--r-- | libgomp/ChangeLog | 5 | ||||
-rw-r--r-- | libgomp/config/linux/powerpc/mutex.h | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 89c8a42..46536c8 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,8 @@ +2008-12-01 Janis Johnson <janis187@us.ibm.com> + + PR libgomp/38270 + * config/linux/powerpc/mutex.h: New. + 2008-12-01 Jakub Jelinek <jakub@redhat.com> PR c++/38257 diff --git a/libgomp/config/linux/powerpc/mutex.h b/libgomp/config/linux/powerpc/mutex.h new file mode 100644 index 0000000..e64ff07 --- /dev/null +++ b/libgomp/config/linux/powerpc/mutex.h @@ -0,0 +1,2 @@ +/* On PowerPC __sync_lock_test_and_set isn't a full barrier. */ +#include "config/linux/ia64/mutex.h" |