ms-intrin.cpp revision dce250be480d32c9ce8a705936ac6e3c94ded2cb
1// RUN: %clang -target i386-pc-win32 -fms-extensions -fsyntax-only %s
2
3// Get size_t, but avoid including mm_malloc.h which includes stdlib.h which may
4// not exist.
5#include <stdint.h>
6#undef __STDC_HOSTED__
7
8#include <Intrin.h>
9
10template <typename T>
11void foo(T V) {}
12