[llvm] r277199 - Fixed line endings

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Fri Jul 29 11:58:57 PDT 2016


Author: rksimon
Date: Fri Jul 29 13:58:57 2016
New Revision: 277199

URL: http://llvm.org/viewvc/llvm-project?rev=277199&view=rev
Log:
Fixed line endings

Modified:
    llvm/trunk/test/CodeGen/X86/shift-i128.ll

Modified: llvm/trunk/test/CodeGen/X86/shift-i128.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/shift-i128.ll?rev=277199&r1=277198&r2=277199&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/shift-i128.ll (original)
+++ llvm/trunk/test/CodeGen/X86/shift-i128.ll Fri Jul 29 13:58:57 2016
@@ -1,94 +1,94 @@
-; RUN: llc < %s -march=x86
-; RUN: llc < %s -march=x86-64
-
-;
-; Scalars
-;
-
-define void @test_lshr_i128(i128 %x, i128 %a, i128* nocapture %r) nounwind {
-entry:
-	%0 = lshr i128 %x, %a
-	store i128 %0, i128* %r, align 16
-	ret void
-}
-
-define void @test_ashr_i128(i128 %x, i128 %a, i128* nocapture %r) nounwind {
-entry:
-	%0 = ashr i128 %x, %a
-	store i128 %0, i128* %r, align 16
-	ret void
-}
-
-define void @test_shl_i128(i128 %x, i128 %a, i128* nocapture %r) nounwind {
-entry:
-	%0 = shl i128 %x, %a
-	store i128 %0, i128* %r, align 16
-	ret void
-}
-
-define void @test_lshr_i128_outofrange(i128 %x, i128* nocapture %r) nounwind {
-entry:
-	%0 = lshr i128 %x, -1
-	store i128 %0, i128* %r, align 16
-	ret void
-}
-
-define void @test_ashr_i128_outofrange(i128 %x, i128* nocapture %r) nounwind {
-entry:
-	%0 = ashr i128 %x, -1
-	store i128 %0, i128* %r, align 16
-	ret void
-}
-
-define void @test_shl_i128_outofrange(i128 %x, i128* nocapture %r) nounwind {
-entry:
-	%0 = shl i128 %x, -1
-	store i128 %0, i128* %r, align 16
-	ret void
-}
-
-;
-; Vectors
-;
-
-define void @test_lshr_v2i128(<2 x i128> %x, <2 x i128> %a, <2 x i128>* nocapture %r) nounwind {
-entry:
-	%0 = lshr <2 x i128> %x, %a
-	store <2 x i128> %0, <2 x i128>* %r, align 16
-	ret void
-}
-
-define void @test_ashr_v2i128(<2 x i128> %x, <2 x i128> %a, <2 x i128>* nocapture %r) nounwind {
-entry:
-	%0 = ashr <2 x i128> %x, %a
-	store <2 x i128> %0, <2 x i128>* %r, align 16
-	ret void
-}
-
-define void @test_shl_v2i128(<2 x i128> %x, <2 x i128> %a, <2 x i128>* nocapture %r) nounwind {
-entry:
-	%0 = shl <2 x i128> %x, %a
-	store <2 x i128> %0, <2 x i128>* %r, align 16
-	ret void
-}
-
-define void @test_lshr_v2i128_outofrange(<2 x i128> %x, <2 x i128>* nocapture %r) nounwind {
-entry:
-	%0 = lshr <2 x i128> %x, <i128 -1, i128 -1>
-	store <2 x i128> %0, <2 x i128>* %r, align 16
-	ret void
-}
-
-define void @test_ashr_v2i128_outofrange(<2 x i128> %x, <2 x i128>* nocapture %r) nounwind {
-entry:
-	%0 = ashr <2 x i128> %x, <i128 -1, i128 -1>
-	store <2 x i128> %0, <2 x i128>* %r, align 16
-	ret void
-}
-
-define void @test_shl_v2i128_outofrange(<2 x i128> %x, <2 x i128>* nocapture %r) nounwind {
-entry:
-	%0 = shl <2 x i128> %x, <i128 -1, i128 -1>
-	store <2 x i128> %0, <2 x i128>* %r, align 16
-	ret void
-}
+; RUN: llc < %s -march=x86
+; RUN: llc < %s -march=x86-64
+
+;
+; Scalars
+;
+
+define void @test_lshr_i128(i128 %x, i128 %a, i128* nocapture %r) nounwind {
+entry:
+	%0 = lshr i128 %x, %a
+	store i128 %0, i128* %r, align 16
+	ret void
+}
+
+define void @test_ashr_i128(i128 %x, i128 %a, i128* nocapture %r) nounwind {
+entry:
+	%0 = ashr i128 %x, %a
+	store i128 %0, i128* %r, align 16
+	ret void
+}
+
+define void @test_shl_i128(i128 %x, i128 %a, i128* nocapture %r) nounwind {
+entry:
+	%0 = shl i128 %x, %a
+	store i128 %0, i128* %r, align 16
+	ret void
+}
+
+define void @test_lshr_i128_outofrange(i128 %x, i128* nocapture %r) nounwind {
+entry:
+	%0 = lshr i128 %x, -1
+	store i128 %0, i128* %r, align 16
+	ret void
+}
+
+define void @test_ashr_i128_outofrange(i128 %x, i128* nocapture %r) nounwind {
+entry:
+	%0 = ashr i128 %x, -1
+	store i128 %0, i128* %r, align 16
+	ret void
+}
+
+define void @test_shl_i128_outofrange(i128 %x, i128* nocapture %r) nounwind {
+entry:
+	%0 = shl i128 %x, -1
+	store i128 %0, i128* %r, align 16
+	ret void
+}
+
+;
+; Vectors
+;
+
+define void @test_lshr_v2i128(<2 x i128> %x, <2 x i128> %a, <2 x i128>* nocapture %r) nounwind {
+entry:
+	%0 = lshr <2 x i128> %x, %a
+	store <2 x i128> %0, <2 x i128>* %r, align 16
+	ret void
+}
+
+define void @test_ashr_v2i128(<2 x i128> %x, <2 x i128> %a, <2 x i128>* nocapture %r) nounwind {
+entry:
+	%0 = ashr <2 x i128> %x, %a
+	store <2 x i128> %0, <2 x i128>* %r, align 16
+	ret void
+}
+
+define void @test_shl_v2i128(<2 x i128> %x, <2 x i128> %a, <2 x i128>* nocapture %r) nounwind {
+entry:
+	%0 = shl <2 x i128> %x, %a
+	store <2 x i128> %0, <2 x i128>* %r, align 16
+	ret void
+}
+
+define void @test_lshr_v2i128_outofrange(<2 x i128> %x, <2 x i128>* nocapture %r) nounwind {
+entry:
+	%0 = lshr <2 x i128> %x, <i128 -1, i128 -1>
+	store <2 x i128> %0, <2 x i128>* %r, align 16
+	ret void
+}
+
+define void @test_ashr_v2i128_outofrange(<2 x i128> %x, <2 x i128>* nocapture %r) nounwind {
+entry:
+	%0 = ashr <2 x i128> %x, <i128 -1, i128 -1>
+	store <2 x i128> %0, <2 x i128>* %r, align 16
+	ret void
+}
+
+define void @test_shl_v2i128_outofrange(<2 x i128> %x, <2 x i128>* nocapture %r) nounwind {
+entry:
+	%0 = shl <2 x i128> %x, <i128 -1, i128 -1>
+	store <2 x i128> %0, <2 x i128>* %r, align 16
+	ret void
+}




More information about the llvm-commits mailing list