]> granicus.if.org Git - clang/commitdiff
s/Intrin.h/intrin.h/, trying to fix the build after r272701
authorHans Wennborg <hans@hanshq.net>
Tue, 14 Jun 2016 20:14:24 +0000 (20:14 +0000)
committerHans Wennborg <hans@hanshq.net>
Tue, 14 Jun 2016 20:14:24 +0000 (20:14 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@272702 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Headers/CMakeLists.txt
lib/Headers/intrin.h
test/CodeGen/ms-intrinsics.c
test/CodeGen/ms-mm-align.c
test/Headers/ms-intrin.cpp

index f2c8fb8d262d9c4a03206cdf010e69bb77be9608..2eedb332c7b15ba35b1e11016017160ffb3da17e 100644 (file)
@@ -37,7 +37,7 @@ set(files
   htmxlintrin.h
   ia32intrin.h
   immintrin.h
-  Intrin.h
+  intrin.h
   inttypes.h
   iso646.h
   limits.h
index f15317958822217692edf0948a10364411664595..3033fae1cf7691cc8feca60fcd5f7075912fdbc0 100644 (file)
@@ -1,4 +1,4 @@
-/* ===-------- 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
@@ -23,7 +23,7 @@
 
 /* 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
index d05adfd696bf0d932e98945a6c4f2dc13cb2075b..ceaa847e9987c4e6cec3f2912873e0ae53d3fb42 100644 (file)
@@ -8,11 +8,11 @@
 // 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);
index 49fedddc01aa1f180daea15894168f1467f56ad0..7130c74b2905245489e3070e63f0755f551a0793 100644 (file)
@@ -2,10 +2,10 @@
 // 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) {
index 9356d21a236861bc28c25b34155e65e294cd5947..c6974285538182a58b96cf368e744b9129c098ae 100644 (file)
 
 // 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>