mirror of
https://github.com/curl/curl.git
synced 2024-11-21 01:16:58 +08:00
further narrow the use of the icc 9.1 optimizer workaround
This commit is contained in:
parent
41fd08bb0d
commit
ce7b565595
@ -74,7 +74,9 @@
|
||||
void
|
||||
Curl_freeaddrinfo(Curl_addrinfo *cahead)
|
||||
{
|
||||
#if defined(__INTEL_COMPILER) && (__INTEL_COMPILER == 910)
|
||||
#if defined(__INTEL_COMPILER) && (__INTEL_COMPILER == 910) && \
|
||||
defined(__unix__) && defined(__i386__)
|
||||
/* workaround icc 9.1 optimizer issue */
|
||||
volatile Curl_addrinfo * volatile ca;
|
||||
volatile Curl_addrinfo * volatile canext;
|
||||
#else
|
||||
|
Loading…
Reference in New Issue
Block a user