Fix several accidental DOS line endings in source files

Summary:
There are a number of files in the tree which have been accidentally checked in with DOS line endings.  Convert these to native line endings.

There are also a few files which have DOS line endings on purpose, and I have set the svn:eol-style property to 'CRLF' on those.

Reviewers: joerg, aaron.ballman

Subscribers: aaron.ballman, sanjoy, dsanders, llvm-commits

Differential Revision: http://reviews.llvm.org/D15848

llvm-svn: 256707
diff --git a/llvm/test/CodeGen/X86/system-intrinsics-xsaves.ll b/llvm/test/CodeGen/X86/system-intrinsics-xsaves.ll
index ca1c5c1..840bbbc 100644
--- a/llvm/test/CodeGen/X86/system-intrinsics-xsaves.ll
+++ b/llvm/test/CodeGen/X86/system-intrinsics-xsaves.ll
@@ -1,23 +1,23 @@
-; RUN: llc < %s -mtriple=i686-unknown-unknown -mattr=+xsave,+xsaves | FileCheck %s

-

-define void @test_xsaves(i8* %ptr, i32 %hi, i32 %lo) {

-; CHECK-LABEL: test_xsaves

-; CHECK: movl   8(%esp), %edx

-; CHECK: movl   12(%esp), %eax

-; CHECK: movl   4(%esp), %ecx

-; CHECK: xsaves (%ecx)

-  call void @llvm.x86.xsaves(i8* %ptr, i32 %hi, i32 %lo)

-  ret void;

-}

-declare void @llvm.x86.xsaves(i8*, i32, i32)

-

-define void @test_xrstors(i8* %ptr, i32 %hi, i32 %lo) {

-; CHECK-LABEL: test_xrstors

-; CHECK: movl    8(%esp), %edx

-; CHECK: movl    12(%esp), %eax

-; CHECK: movl    4(%esp), %ecx

-; CHECK: xrstors (%ecx)

-  call void @llvm.x86.xrstors(i8* %ptr, i32 %hi, i32 %lo)

-  ret void;

-}

-declare void @llvm.x86.xrstors(i8*, i32, i32)

+; RUN: llc < %s -mtriple=i686-unknown-unknown -mattr=+xsave,+xsaves | FileCheck %s
+
+define void @test_xsaves(i8* %ptr, i32 %hi, i32 %lo) {
+; CHECK-LABEL: test_xsaves
+; CHECK: movl   8(%esp), %edx
+; CHECK: movl   12(%esp), %eax
+; CHECK: movl   4(%esp), %ecx
+; CHECK: xsaves (%ecx)
+  call void @llvm.x86.xsaves(i8* %ptr, i32 %hi, i32 %lo)
+  ret void;
+}
+declare void @llvm.x86.xsaves(i8*, i32, i32)
+
+define void @test_xrstors(i8* %ptr, i32 %hi, i32 %lo) {
+; CHECK-LABEL: test_xrstors
+; CHECK: movl    8(%esp), %edx
+; CHECK: movl    12(%esp), %eax
+; CHECK: movl    4(%esp), %ecx
+; CHECK: xrstors (%ecx)
+  call void @llvm.x86.xrstors(i8* %ptr, i32 %hi, i32 %lo)
+  ret void;
+}
+declare void @llvm.x86.xrstors(i8*, i32, i32)