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

attempt to workaround icc 9.1 optimizer induced problem

parent d0a930cd
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,12 @@
void
Curl_freeaddrinfo(Curl_addrinfo *cahead)
{
#if defined(__INTEL_COMPILER) && (__INTEL_COMPILER == 910)
volatile Curl_addrinfo * volatile ca;
volatile Curl_addrinfo * volatile canext;
#else
Curl_addrinfo *ca, *canext;
#endif
for(ca = cahead; ca != NULL; ca = canext) {
......
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