diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-12-04 11:15:26 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-12-04 11:15:26 +0000 |
commit | 931583e596cc9ad9bc4832dfabb1123cdf8bcbb9 (patch) | |
tree | bf964a65a218463a7c22e69fda183063138f2b29 /gcc/optabs.c | |
parent | 810ac80f28ccee78a5596b8b51f3c07238e2f656 (diff) | |
download | gcc-931583e596cc9ad9bc4832dfabb1123cdf8bcbb9.tar.gz |
gcc/
PR middle-end/51351
* optabs.c (init_sync_libfuncs): Use "or" rather than "ior"
in the external names.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@181985 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/optabs.c')
-rw-r--r-- | gcc/optabs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/optabs.c b/gcc/optabs.c index c3f81dfe2d2..4f5340e589e 100644 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -6624,14 +6624,14 @@ init_sync_libfuncs (int max) init_sync_libfuncs_1 (sync_old_add_optab, "__sync_fetch_and_add", max); init_sync_libfuncs_1 (sync_old_sub_optab, "__sync_fetch_and_sub", max); - init_sync_libfuncs_1 (sync_old_ior_optab, "__sync_fetch_and_ior", max); + init_sync_libfuncs_1 (sync_old_ior_optab, "__sync_fetch_and_or", max); init_sync_libfuncs_1 (sync_old_and_optab, "__sync_fetch_and_and", max); init_sync_libfuncs_1 (sync_old_xor_optab, "__sync_fetch_and_xor", max); init_sync_libfuncs_1 (sync_old_nand_optab, "__sync_fetch_and_nand", max); init_sync_libfuncs_1 (sync_new_add_optab, "__sync_add_and_fetch", max); init_sync_libfuncs_1 (sync_new_sub_optab, "__sync_sub_and_fetch", max); - init_sync_libfuncs_1 (sync_new_ior_optab, "__sync_ior_and_fetch", max); + init_sync_libfuncs_1 (sync_new_ior_optab, "__sync_or_and_fetch", max); init_sync_libfuncs_1 (sync_new_and_optab, "__sync_and_and_fetch", max); init_sync_libfuncs_1 (sync_new_xor_optab, "__sync_xor_and_fetch", max); init_sync_libfuncs_1 (sync_new_nand_optab, "__sync_nand_and_fetch", max); |