Skip to content
Snippets Groups Projects
Commit ce7b5655 authored by Yang Tse's avatar Yang Tse
Browse files

further narrow the use of the icc 9.1 optimizer workaround

parent 41fd08bb
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment