Skip to content

Instantly share code, notes, and snippets.

@pierrejoye
Created February 29, 2016 01:12
Show Gist options
  • Save pierrejoye/5ee4c819dcb4890350a3 to your computer and use it in GitHub Desktop.
Save pierrejoye/5ee4c819dcb4890350a3 to your computer and use it in GitHub Desktop.
For example, after hundred of warnings like:
c:\program files (x86)\microsoft visual studio 14.0\vc\include\intrin.h(509) : warning C28251: Inconsistent annotation for '_bittest64': this instance has no annotations. See <no file>(0).
c:\program files (x86)\microsoft visual studio 14.0\vc\include\intrin.h(510) : warning C28251: Inconsistent annotation for '_bittestandcomplement': this instance has no annotations. See <no file>(0).
c:\program files (x86)\microsoft visual studio 14.0\vc\include\intrin.h(511) : warning C28251: Inconsistent annotation for '_bittestandcomplement64': this instance has no annotations. See <no file>(0).
c:\program files (x86)\microsoft visual studio 14.0\vc\include\intrin.h(512) : warning C28251: Inconsistent annotation for '_bittestandreset': this instance has no annotations. See <no file>(0).
c:\program files (x86)\microsoft visual studio 14.0\vc\include\intrin.h(513) : warning C28251: Inconsistent annotation for '_bittestandreset64': this instance has no annotations. See <no file>(0).
c:\program files (x86)\microsoft visual studio 14.0\vc\include\intrin.h(514) : warning C28251: Inconsistent annotation for '_bittestandset': this instance has no annotations. See <no file>(0).
c:\program files (x86)\microsoft visual studio 14.0\vc\include\intrin.h(515) : warning C28251: Inconsistent annotation for '_bittestandset64': this instance has no annotations. See <no file>(0).
c:\program files (x86)\microsoft visual studio 14.0\vc\include\intrin.h(521) : warning C28251: Inconsistent annotation for '_interlockedbittestandreset': this instance has no annotations. See <no file>(0).
c:\program files (x86)\microsoft visual studio 14.0\vc\include\intrin.h(522) : warning C28251: Inconsistent annotation for '_interlockedbittestandreset64': this instance has no annotations. See <no file>(0).
c:\program files (x86)\microsoft visual studio 14.0\vc\include\intrin.h(529) : warning C28251: Inconsistent annotation for '_interlockedbittestandset': this instance has no annotations. See <no file>(0).
c:\program files (x86)\microsoft visual studio 14.0\vc\include\intrin.h(530) : warning C28251: Inconsistent annotation for '_interlockedbittestandset64': this instance has no annotations. See <no file>(0).
c:\program files (x86)\microsoft visual studio 14.0\vc\include\intrin.h(610) : warning C28251: Inconsistent annotation for '_m_prefetchw': this instance has no annotations. See <no file>(0).
c:\program files (x86)\microsoft visual studio 14.0\vc\include\intrin.h(683) : warning C28251: Inconsistent annotation for '_mm_clflush': this instance has no annotations. See <no file>(0). Note: There are several prototypes for this function. This warning compares the first with instance number 3.
c:\program files (x86)\microsoft visual studio 14.0\vc\include\intrin.h(950) : warning C28251: Inconsistent annotation for '_mm_prefetch': this instance has no annotations. See <no file>(0). Note: There are several prototypes for this function. This warning compares the first with instance number 3.
c:\program files (x86)\microsoft visual studio 14.0\vc\include\intrin.h(982) : warning C28251: Inconsistent annotation for '_mm_setcsr': this instance has no annotations. See <no file>(0). Note: There are several prototypes for this function. This warning compares the first with instance number 3.
c:\program files (x86)\microsoft visual studio 14.0\vc\include\intrin.h(1103) : warning C28251: Inconsistent annotation for '_mul128': this instance has no annotations. See <no file>(0).
c:\program files (x86)\microsoft visual studio 14.0\vc\include\intrin.h(1105) : warning C28251: Inconsistent annotation for '_rotl16': this instance has no annotations. See <no file>(0).
c:\program files (x86)\microsoft visual studio 14.0\vc\include\intrin.h(1107) : warning C28251: Inconsistent annotation for '_rotl8': this instance has no annotations. See <no file>(0).
c:\program files (x86)\microsoft visual studio 14.0\vc\include\intrin.h(1109) : warning C28251: Inconsistent annotation for '_rotr16': this instance has no annotations. See <no file>(0).
c:\program files (x86)\microsoft visual studio 14.0\vc\include\intrin.h(1111) : warning C28251: Inconsistent annotation for '_rotr8': this instance has no annotations. See <no file>(0).
c:\program files (x86)\microsoft visual studio 14.0\vc\include\intrin.h(1112) : warning C28251: Inconsistent annotation for '_setjmp': this instance has no annotations. See <no file>(0).
c:\program files (x86)\microsoft visual studio 14.0\vc\include\intrin.h(1114) : warning C28251: Inconsistent annotation for '_umul128': this instance has no annotations. See <no file>(0).
c:\php-sdk\master\vc14\x64\php-src\zend\zend_ptr_stack.c(101) : warning C6001: Using uninitialized memory '*stack->elements'.: Lines: 96, 97, 98, 100, 101, 100, 101
zend_smart_str.c
zend_sort.c
Zend\zend_operators.c(1179): fatal error C1001: An internal error has occurred in the compiler.
(compiler file 'msc1.cpp', line 1421)
To work around this problem, try simplifying or changing the program near the locations listed above.
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment