Skip to content

Commit d055ede

Browse files
Stop searching for the old ia32intrin.h header.
1 parent 6d9ae78 commit d055ede

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

config/qthread_check_atomics.m4

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ AS_IF([test "x$enable_builtin_atomics" != xno],
1818
AC_CACHE_CHECK([whether compiler supports builtin atomic CAS-32],
1919
[qthread_cv_atomic_CAS32],
2020
[AC_LINK_IFELSE([AC_LANG_SOURCE([[
21-
#if HAVE_IA32INTRIN_H
22-
# include <ia32intrin.h>
23-
#endif
2421
#include <stdlib.h>
2522
#include <stdint.h> /* for uint32_t */
2623
@@ -35,9 +32,6 @@ return (int)foo;
3532
AC_CACHE_CHECK([whether compiler supports builtin atomic CAS-64],
3633
[qthread_cv_atomic_CAS64],
3734
[AC_LINK_IFELSE([AC_LANG_SOURCE([[
38-
#if HAVE_IA32INTRIN_H
39-
# include <ia32intrin.h>
40-
#endif
4135
#include <stdlib.h>
4236
#include <stdint.h> /* for uint64_t */
4337
@@ -52,9 +46,6 @@ return foo;
5246
AC_CACHE_CHECK([whether compiler supports builtin atomic CAS-ptr],
5347
[qthread_cv_atomic_CASptr],
5448
[AC_LINK_IFELSE([AC_LANG_SOURCE([[
55-
#if HAVE_IA32INTRIN_H
56-
# include <ia32intrin.h>
57-
#endif
5849
#include <stdlib.h>
5950
6051
int main(void)
@@ -121,9 +112,6 @@ AC_CACHE_CHECK([whether compiler supports builtin atomic incr],
121112
[qthread_cv_atomic_incr],
122113
[AS_IF([test "$1" -eq 8],
123114
[AC_LINK_IFELSE([AC_LANG_SOURCE([[
124-
#if HAVE_IA32INTRIN_H
125-
# include <ia32intrin.h>
126-
#endif
127115
#include <stdlib.h>
128116
#include <stdint.h> /* for uint64_t */
129117
@@ -136,9 +124,6 @@ return foo;
136124
[qthread_cv_atomic_incr="yes"],
137125
[qthread_cv_atomic_incr="no"])],
138126
[AC_LINK_IFELSE([AC_LANG_SOURCE([[
139-
#if HAVE_IA32INTRIN_H
140-
# include <ia32intrin.h>
141-
#endif
142127
#include <stdlib.h>
143128
#include <stdint.h> /* for uint32_t */
144129
@@ -156,9 +141,6 @@ AS_IF([test "$qthread_cv_atomic_incr" = "yes"],
156141
[qt_cv_atomic_incr_works],
157142
[AS_IF([test "$1" -eq 8],
158143
[AC_RUN_IFELSE([AC_LANG_SOURCE([[
159-
#if HAVE_IA32INTRIN_H
160-
# include <ia32intrin.h>
161-
#endif
162144
#include <stdlib.h>
163145
#include <stdint.h> /* for uint64_t */
164146
@@ -189,9 +171,6 @@ return 0;
189171
[qt_cv_atomic_incr_works="no"],
190172
[qt_cv_atomic_incr_works="assuming yes"])],
191173
[AC_RUN_IFELSE([AC_LANG_SOURCE([[
192-
#if HAVE_IA32INTRIN_H
193-
# include <ia32intrin.h>
194-
#endif
195174
#include <stdlib.h>
196175
#include <stdint.h> /* for uint32_t */
197176

0 commit comments

Comments
 (0)