diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2010-04-14 14:57:43 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2010-04-14 14:57:43 +0200 |
commit | 289a9f867a78d0c928eed2d9793964b9c7272022 (patch) | |
tree | 46cd8d1ce469454b6874a0ef50ba2a32889f1046 /libgomp/configure | |
parent | 8406cb626054654856b14d9684d3a4919bfec546 (diff) | |
download | gcc-289a9f867a78d0c928eed2d9793964b9c7272022.zip gcc-289a9f867a78d0c928eed2d9793964b9c7272022.tar.gz gcc-289a9f867a78d0c928eed2d9793964b9c7272022.tar.bz2 |
acinclude.m4 (LIBGOMP_CHECK_SYNC_BUILTINS): Remove set but not unused bar variable.
* acinclude.m4 (LIBGOMP_CHECK_SYNC_BUILTINS): Remove set but
not unused bar variable.
* configure: Regenerate.
From-SVN: r158344
Diffstat (limited to 'libgomp/configure')
-rwxr-xr-x | libgomp/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgomp/configure b/libgomp/configure index d2018b8..fcd38eb 100755 --- a/libgomp/configure +++ b/libgomp/configure @@ -15952,7 +15952,7 @@ else int main () { -int foo, bar; bar = __sync_val_compare_and_swap(&foo, 0, 1); +int foo; __sync_val_compare_and_swap(&foo, 0, 1); ; return 0; } |