cmake HAS_INTRIN_H examples

mmp/pbrt-v4 CMakeLists.txt :437

check_cxx_source_compiles ("
#include <intrin.h>
int main() {
    unsigned long lz = 0, v = 1234;
    if (_BitScanReverse(&lz, v)) return lz;
    return 0;
} " HAS_INTRIN_H)