htmxlintrin.h
ia32intrin.h
immintrin.h
- Intrin.h
+ intrin.h
inttypes.h
iso646.h
limits.h
-/* ===-------- Intrin.h ---------------------------------------------------===
+/* ===-------- intrin.h ---------------------------------------------------===
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
/* Only include this if we're compiling for the windows platform. */
#ifndef _MSC_VER
-#include_next <Intrin.h>
+#include_next <intrin.h>
#else
#ifndef __INTRIN_H
// RUN: -triple x86_64--windows -Oz -emit-llvm %s -o - \
// RUN: | FileCheck %s --check-prefix=CHECK --check-prefix=CHECK-X64
-// Intrin.h needs size_t, but -ffreestanding prevents us from getting it from
+// intrin.h needs size_t, but -ffreestanding prevents us from getting it from
// stddef.h. Work around it with this typedef.
typedef __SIZE_TYPE__ size_t;
-#include <Intrin.h>
+#include <intrin.h>
void *test_InterlockedExchangePointer(void * volatile *Target, void *Value) {
return _InterlockedExchangePointer(Target, Value);
// RUN: -triple i686--windows -emit-llvm %s -o - \
// RUN: | FileCheck %s -check-prefix CHECK
-// Intrin.h needs size_t, but -ffreestanding prevents us from getting it from
+// intrin.h needs size_t, but -ffreestanding prevents us from getting it from
// stddef.h. Work around it with this typedef.
typedef __SIZE_TYPE__ size_t;
-#include <Intrin.h>
+#include <intrin.h>
void capture_ptr(int* i);
void test_mm_align16(int p) {
// REQUIRES: x86-registered-target
-// Intrin.h needs size_t, but -ffreestanding prevents us from getting it from
+// intrin.h needs size_t, but -ffreestanding prevents us from getting it from
// stddef.h. Work around it with this typedef.
typedef __SIZE_TYPE__ size_t;
-#include <Intrin.h>
+#include <intrin.h>
// Use some C++ to make sure we closed the extern "C" brackets.
template <typename T>