Fix line endings before adding RUN lines, NFC
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>
Wed, 30 Jul 2014 17:49:00 +0000 (17:49 +0000)
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>
Wed, 30 Jul 2014 17:49:00 +0000 (17:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214320 91177308-0d34-0410-b5e6-96231b3b80d8

test/Bitcode/miscInstructions.3.2.ll
test/Bitcode/variableArgumentIntrinsic.3.2.ll

index bceae20109c3a4794c798db034c2c58cfbd0572d..2b44fc6599e603f5fbd85e0ea0a6b2d301d1549d 100644 (file)
-; RUN:  llvm-dis < %s.bc| FileCheck %s\r
-\r
-; miscInstructions.3.2.ll.bc was generated by passing this file to llvm-as-3.2.\r
-; The test checks that LLVM does not misread miscellaneous instructions of\r
-; older bitcode files.\r
-\r
-define void @icmp(i32 %x1, i32 %x2, i32* %ptr1, i32* %ptr2, <2 x i32> %vec1, <2 x i32> %vec2){\r
-entry:\r
-; CHECK: %res1 = icmp eq i32 %x1, %x2\r
-  %res1 = icmp eq i32 %x1, %x2\r
-  \r
-; CHECK-NEXT: %res2 = icmp ne i32 %x1, %x2\r
-  %res2 = icmp ne i32 %x1, %x2\r
-  \r
-; CHECK-NEXT: %res3 = icmp ugt i32 %x1, %x2\r
-  %res3 = icmp ugt i32 %x1, %x2\r
-  \r
-; CHECK-NEXT: %res4 = icmp uge i32 %x1, %x2\r
-  %res4 = icmp uge i32 %x1, %x2\r
-  \r
-; CHECK-NEXT: %res5 = icmp ult i32 %x1, %x2\r
-  %res5 = icmp ult i32 %x1, %x2\r
-  \r
-; CHECK-NEXT: %res6 = icmp ule i32 %x1, %x2\r
-  %res6 = icmp ule i32 %x1, %x2\r
-  \r
-; CHECK-NEXT: %res7 = icmp sgt i32 %x1, %x2\r
-  %res7 = icmp sgt i32 %x1, %x2\r
-  \r
-; CHECK-NEXT: %res8 = icmp sge i32 %x1, %x2\r
-  %res8 = icmp sge i32 %x1, %x2\r
-  \r
-; CHECK-NEXT: %res9 = icmp slt i32 %x1, %x2\r
-  %res9 = icmp slt i32 %x1, %x2\r
-  \r
-; CHECK-NEXT: %res10 = icmp sle i32 %x1, %x2\r
-  %res10 = icmp sle i32 %x1, %x2\r
-  \r
-; CHECK-NEXT: %res11 = icmp eq i32* %ptr1, %ptr2\r
-  %res11 = icmp eq i32* %ptr1, %ptr2\r
-  \r
-; CHECK-NEXT: %res12 = icmp eq <2 x i32> %vec1, %vec2\r
-  %res12 = icmp eq <2 x i32> %vec1, %vec2\r
-  \r
-  ret void\r
-}\r
-\r
-\r
-define void @fcmp(float %x1, float %x2, <2 x float> %vec1, <2 x float> %vec2){\r
-entry:\r
-; CHECK: %res1 = fcmp oeq float %x1, %x2\r
-  %res1 = fcmp oeq float %x1, %x2\r
-  \r
-; CHECK-NEXT: %res2 = fcmp one float %x1, %x2\r
-  %res2 = fcmp one float %x1, %x2\r
-  \r
-; CHECK-NEXT: %res3 = fcmp ugt float %x1, %x2\r
-  %res3 = fcmp ugt float %x1, %x2\r
-  \r
-; CHECK-NEXT: %res4 = fcmp uge float %x1, %x2\r
-  %res4 = fcmp uge float %x1, %x2\r
-  \r
-; CHECK-NEXT: %res5 = fcmp ult float %x1, %x2\r
-  %res5 = fcmp ult float %x1, %x2\r
-  \r
-; CHECK-NEXT: %res6 = fcmp ule float %x1, %x2\r
-  %res6 = fcmp ule float %x1, %x2\r
-  \r
-; CHECK-NEXT: %res7 = fcmp ogt float %x1, %x2\r
-  %res7 = fcmp ogt float %x1, %x2\r
-  \r
-; CHECK-NEXT: %res8 = fcmp oge float %x1, %x2\r
-  %res8 = fcmp oge float %x1, %x2\r
-  \r
-; CHECK-NEXT: %res9 = fcmp olt float %x1, %x2\r
-  %res9 = fcmp olt float %x1, %x2\r
-  \r
-; CHECK-NEXT: %res10 = fcmp ole float %x1, %x2\r
-  %res10 = fcmp ole float %x1, %x2\r
-  \r
-; CHECK-NEXT: %res11 = fcmp ord float %x1, %x2\r
-  %res11 = fcmp ord float %x1, %x2\r
-  \r
-; CHECK-NEXT: %res12 = fcmp ueq float %x1, %x2\r
-  %res12 = fcmp ueq float %x1, %x2\r
-  \r
-; CHECK-NEXT: %res13 = fcmp une float %x1, %x2\r
-  %res13 = fcmp une float %x1, %x2\r
-  \r
-; CHECK-NEXT: %res14 = fcmp uno float %x1, %x2\r
-  %res14 = fcmp uno float %x1, %x2\r
-  \r
-; CHECK-NEXT: %res15 = fcmp true float %x1, %x2\r
-  %res15 = fcmp true float %x1, %x2\r
-  \r
-; CHECK-NEXT: %res16 = fcmp false float %x1, %x2\r
-  %res16 = fcmp false float %x1, %x2\r
-  \r
-; CHECK-NEXT: %res17 = fcmp oeq <2 x float> %vec1, %vec2\r
-  %res17 = fcmp oeq <2 x float> %vec1, %vec2\r
-  \r
-  ret void\r
-}\r
-\r
-declare i32 @printf(i8* noalias nocapture, ...)\r
-\r
-define void @call(i32 %x, i8* %msg ){\r
-entry:\r
-\r
-; CHECK: %res1 = call i32 @test(i32 %x)\r
-  %res1 = call i32 @test(i32 %x)\r
-  \r
-; CHECK-NEXT: %res2 = tail call i32 @test(i32 %x)\r
-  %res2 = tail call i32 @test(i32 %x)\r
-  \r
-; CHECK-NEXT: %res3 = call i32 (i8*, ...)* @printf(i8* %msg, i32 12, i8 42)\r
-  %res3 = call i32 (i8*, ...)* @printf(i8* %msg, i32 12, i8 42)\r
-  \r
-  ret void\r
-}\r
-\r
-define i32 @test(i32 %x){\r
-entry:\r
-\r
-  ret i32 %x\r
-}\r
+; RUN: llvm-dis < %s.bc| FileCheck %s
+
+; miscInstructions.3.2.ll.bc was generated by passing this file to llvm-as-3.2.
+; The test checks that LLVM does not misread miscellaneous instructions of
+; older bitcode files.
+
+define void @icmp(i32 %x1, i32 %x2, i32* %ptr1, i32* %ptr2, <2 x i32> %vec1, <2 x i32> %vec2){
+entry:
+; CHECK: %res1 = icmp eq i32 %x1, %x2
+  %res1 = icmp eq i32 %x1, %x2
+
+; CHECK-NEXT: %res2 = icmp ne i32 %x1, %x2
+  %res2 = icmp ne i32 %x1, %x2
+
+; CHECK-NEXT: %res3 = icmp ugt i32 %x1, %x2
+  %res3 = icmp ugt i32 %x1, %x2
+
+; CHECK-NEXT: %res4 = icmp uge i32 %x1, %x2
+  %res4 = icmp uge i32 %x1, %x2
+
+; CHECK-NEXT: %res5 = icmp ult i32 %x1, %x2
+  %res5 = icmp ult i32 %x1, %x2
+
+; CHECK-NEXT: %res6 = icmp ule i32 %x1, %x2
+  %res6 = icmp ule i32 %x1, %x2
+
+; CHECK-NEXT: %res7 = icmp sgt i32 %x1, %x2
+  %res7 = icmp sgt i32 %x1, %x2
+
+; CHECK-NEXT: %res8 = icmp sge i32 %x1, %x2
+  %res8 = icmp sge i32 %x1, %x2
+
+; CHECK-NEXT: %res9 = icmp slt i32 %x1, %x2
+  %res9 = icmp slt i32 %x1, %x2
+
+; CHECK-NEXT: %res10 = icmp sle i32 %x1, %x2
+  %res10 = icmp sle i32 %x1, %x2
+
+; CHECK-NEXT: %res11 = icmp eq i32* %ptr1, %ptr2
+  %res11 = icmp eq i32* %ptr1, %ptr2
+
+; CHECK-NEXT: %res12 = icmp eq <2 x i32> %vec1, %vec2
+  %res12 = icmp eq <2 x i32> %vec1, %vec2
+
+  ret void
+}
+
+
+define void @fcmp(float %x1, float %x2, <2 x float> %vec1, <2 x float> %vec2){
+entry:
+; CHECK: %res1 = fcmp oeq float %x1, %x2
+  %res1 = fcmp oeq float %x1, %x2
+
+; CHECK-NEXT: %res2 = fcmp one float %x1, %x2
+  %res2 = fcmp one float %x1, %x2
+
+; CHECK-NEXT: %res3 = fcmp ugt float %x1, %x2
+  %res3 = fcmp ugt float %x1, %x2
+
+; CHECK-NEXT: %res4 = fcmp uge float %x1, %x2
+  %res4 = fcmp uge float %x1, %x2
+
+; CHECK-NEXT: %res5 = fcmp ult float %x1, %x2
+  %res5 = fcmp ult float %x1, %x2
+
+; CHECK-NEXT: %res6 = fcmp ule float %x1, %x2
+  %res6 = fcmp ule float %x1, %x2
+
+; CHECK-NEXT: %res7 = fcmp ogt float %x1, %x2
+  %res7 = fcmp ogt float %x1, %x2
+
+; CHECK-NEXT: %res8 = fcmp oge float %x1, %x2
+  %res8 = fcmp oge float %x1, %x2
+
+; CHECK-NEXT: %res9 = fcmp olt float %x1, %x2
+  %res9 = fcmp olt float %x1, %x2
+
+; CHECK-NEXT: %res10 = fcmp ole float %x1, %x2
+  %res10 = fcmp ole float %x1, %x2
+
+; CHECK-NEXT: %res11 = fcmp ord float %x1, %x2
+  %res11 = fcmp ord float %x1, %x2
+
+; CHECK-NEXT: %res12 = fcmp ueq float %x1, %x2
+  %res12 = fcmp ueq float %x1, %x2
+
+; CHECK-NEXT: %res13 = fcmp une float %x1, %x2
+  %res13 = fcmp une float %x1, %x2
+
+; CHECK-NEXT: %res14 = fcmp uno float %x1, %x2
+  %res14 = fcmp uno float %x1, %x2
+
+; CHECK-NEXT: %res15 = fcmp true float %x1, %x2
+  %res15 = fcmp true float %x1, %x2
+
+; CHECK-NEXT: %res16 = fcmp false float %x1, %x2
+  %res16 = fcmp false float %x1, %x2
+
+; CHECK-NEXT: %res17 = fcmp oeq <2 x float> %vec1, %vec2
+  %res17 = fcmp oeq <2 x float> %vec1, %vec2
+
+  ret void
+}
+
+declare i32 @printf(i8* noalias nocapture, ...)
+
+define void @call(i32 %x, i8* %msg ){
+entry:
+
+; CHECK: %res1 = call i32 @test(i32 %x)
+  %res1 = call i32 @test(i32 %x)
+
+; CHECK-NEXT: %res2 = tail call i32 @test(i32 %x)
+  %res2 = tail call i32 @test(i32 %x)
+
+; CHECK-NEXT: %res3 = call i32 (i8*, ...)* @printf(i8* %msg, i32 12, i8 42)
+  %res3 = call i32 (i8*, ...)* @printf(i8* %msg, i32 12, i8 42)
+
+  ret void
+}
+
+define i32 @test(i32 %x){
+entry:
+
+  ret i32 %x
+}
index 35fe0e252822bb2ba793ac44bc3b392c3bfaad92..199fbbdbdb59eef113082d43379c0e81f9419a3c 100644 (file)
@@ -1,33 +1,33 @@
-; RUN:  llvm-dis < %s.bc| FileCheck %s\r
-\r
-; vaArgIntrinsic.3.2.ll.bc was generated by passing this file to llvm-as-3.2.\r
-; The test checks that LLVM does not misread variable argument intrinsic instructions\r
-; of older bitcode files.\r
-\r
-define i32 @varArgIntrinsic(i32 %X, ...) {\r
-\r
-  %ap = alloca i8*\r
-  %ap2 = bitcast i8** %ap to i8*\r
-  \r
-; CHECK: call void @llvm.va_start(i8* %ap2)\r
-  call void @llvm.va_start(i8* %ap2)\r
-\r
-; CHECK-NEXT: %tmp = va_arg i8** %ap, i32\r
-  %tmp = va_arg i8** %ap, i32\r
-\r
-  %aq = alloca i8*\r
-  %aq2 = bitcast i8** %aq to i8*\r
-  \r
-; CHECK: call void @llvm.va_copy(i8* %aq2, i8* %ap2)\r
-  call void @llvm.va_copy(i8* %aq2, i8* %ap2)\r
-; CHECK-NEXT: call void @llvm.va_end(i8* %aq2)\r
-  call void @llvm.va_end(i8* %aq2)\r
-\r
-; CHECK-NEXT:  call void @llvm.va_end(i8* %ap2)\r
-  call void @llvm.va_end(i8* %ap2)\r
-  ret i32 %tmp\r
-}\r
-\r
-declare void @llvm.va_start(i8*)\r
-declare void @llvm.va_copy(i8*, i8*)\r
-declare void @llvm.va_end(i8*)
\ No newline at end of file
+; RUN: llvm-dis < %s.bc| FileCheck %s
+
+; vaArgIntrinsic.3.2.ll.bc was generated by passing this file to llvm-as-3.2.
+; The test checks that LLVM does not misread variable argument intrinsic instructions
+; of older bitcode files.
+
+define i32 @varArgIntrinsic(i32 %X, ...) {
+
+  %ap = alloca i8*
+  %ap2 = bitcast i8** %ap to i8*
+
+; CHECK: call void @llvm.va_start(i8* %ap2)
+  call void @llvm.va_start(i8* %ap2)
+
+; CHECK-NEXT: %tmp = va_arg i8** %ap, i32
+  %tmp = va_arg i8** %ap, i32
+
+  %aq = alloca i8*
+  %aq2 = bitcast i8** %aq to i8*
+
+; CHECK: call void @llvm.va_copy(i8* %aq2, i8* %ap2)
+  call void @llvm.va_copy(i8* %aq2, i8* %ap2)
+; CHECK-NEXT: call void @llvm.va_end(i8* %aq2)
+  call void @llvm.va_end(i8* %aq2)
+
+; CHECK-NEXT:  call void @llvm.va_end(i8* %ap2)
+  call void @llvm.va_end(i8* %ap2)
+  ret i32 %tmp
+}
+
+declare void @llvm.va_start(i8*)
+declare void @llvm.va_copy(i8*, i8*)
+declare void @llvm.va_end(i8*)