diff options
author | Stephen Lin <stephenwlin@gmail.com> | 2013-07-13 22:00:58 +0000 |
---|---|---|
committer | Stephen Lin <stephenwlin@gmail.com> | 2013-07-13 22:00:58 +0000 |
commit | 0dfc1664870ad6e48ecb8259d8ad8e70a2a475d3 (patch) | |
tree | d5378d27b22bd00f3a8351925e35e1d590cfa0b3 | |
parent | b4dc0233c9f70e8cf946822811f233bb613a02e9 (diff) | |
download | external_llvm-0dfc1664870ad6e48ecb8259d8ad8e70a2a475d3.zip external_llvm-0dfc1664870ad6e48ecb8259d8ad8e70a2a475d3.tar.gz external_llvm-0dfc1664870ad6e48ecb8259d8ad8e70a2a475d3.tar.bz2 |
Add newlines at end of test files, no functionality change
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186263 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Analysis/CallGraph/no-intrinsics.ll | 2 | ||||
-rw-r--r-- | test/Analysis/ScalarEvolution/2011-04-26-FoldAddRec.ll | 2 | ||||
-rw-r--r-- | test/ExecutionEngine/mov64zext32.ll | 2 | ||||
-rw-r--r-- | test/MC/ARM/neon-vst-encoding.s | 2 | ||||
-rw-r--r-- | test/Transforms/ConstProp/basictest.ll | 2 | ||||
-rw-r--r-- | test/Transforms/CorrelatedValuePropagation/2010-09-02-Trunc.ll | 2 | ||||
-rw-r--r-- | test/Transforms/InstCombine/bitcast-vector-fold.ll | 2 | ||||
-rw-r--r-- | test/Transforms/InstCombine/pr8547.ll | 2 | ||||
-rw-r--r-- | test/Transforms/ScalarRepl/2008-09-22-vector-gep.ll | 2 | ||||
-rw-r--r-- | test/Transforms/ScalarRepl/memset-aggregate.ll | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/test/Analysis/CallGraph/no-intrinsics.ll b/test/Analysis/CallGraph/no-intrinsics.ll index 450dce5..d858907 100644 --- a/test/Analysis/CallGraph/no-intrinsics.ll +++ b/test/Analysis/CallGraph/no-intrinsics.ll @@ -10,4 +10,4 @@ define void @f(i8* %out, i8* %in) { } ; CHECK: Call graph node for function: 'f' -; CHECK-NOT: calls function 'llvm.memcpy.p0i8.p0i8.i32'
\ No newline at end of file +; CHECK-NOT: calls function 'llvm.memcpy.p0i8.p0i8.i32' diff --git a/test/Analysis/ScalarEvolution/2011-04-26-FoldAddRec.ll b/test/Analysis/ScalarEvolution/2011-04-26-FoldAddRec.ll index 1600d5f..973dd7d 100644 --- a/test/Analysis/ScalarEvolution/2011-04-26-FoldAddRec.ll +++ b/test/Analysis/ScalarEvolution/2011-04-26-FoldAddRec.ll @@ -30,4 +30,4 @@ for.inc9: if.then: ret i8 0 -}
\ No newline at end of file +} diff --git a/test/ExecutionEngine/mov64zext32.ll b/test/ExecutionEngine/mov64zext32.ll index 482510d..f38c21a 100644 --- a/test/ExecutionEngine/mov64zext32.ll +++ b/test/ExecutionEngine/mov64zext32.ll @@ -15,4 +15,4 @@ good: bad: ret i32 1 -}
\ No newline at end of file +} diff --git a/test/MC/ARM/neon-vst-encoding.s b/test/MC/ARM/neon-vst-encoding.s index ef9f037..3c7e34e 100644 --- a/test/MC/ARM/neon-vst-encoding.s +++ b/test/MC/ARM/neon-vst-encoding.s @@ -282,4 +282,4 @@ vst2.16 {d16, d17}, [r0, :128] @ CHECK: vst2.8 {d16, d17}, [r0:64] @ encoding: [0x1f,0x08,0x40,0xf4] -@ CHECK: vst2.16 {d16, d17}, [r0:128] @ encoding: [0x6f,0x08,0x40,0xf4]
\ No newline at end of file +@ CHECK: vst2.16 {d16, d17}, [r0:128] @ encoding: [0x6f,0x08,0x40,0xf4] diff --git a/test/Transforms/ConstProp/basictest.ll b/test/Transforms/ConstProp/basictest.ll index 09e6e7d..e9b5a0a 100644 --- a/test/Transforms/ConstProp/basictest.ll +++ b/test/Transforms/ConstProp/basictest.ll @@ -50,4 +50,4 @@ define i128 @vector_to_int_cast() { ; CHECK: @vector_to_int_cast ; CHECK: ret i128 85070591750041656499021422275829170176 } -
\ No newline at end of file + diff --git a/test/Transforms/CorrelatedValuePropagation/2010-09-02-Trunc.ll b/test/Transforms/CorrelatedValuePropagation/2010-09-02-Trunc.ll index fef5b85..a8efa38 100644 --- a/test/Transforms/CorrelatedValuePropagation/2010-09-02-Trunc.ll +++ b/test/Transforms/CorrelatedValuePropagation/2010-09-02-Trunc.ll @@ -22,4 +22,4 @@ merge: %h = select i1 %f, i16 1, i16 0 ; CHECK: ret i16 %h ret i16 %h -}
\ No newline at end of file +} diff --git a/test/Transforms/InstCombine/bitcast-vector-fold.ll b/test/Transforms/InstCombine/bitcast-vector-fold.ll index 8fd7f35..04c2861 100644 --- a/test/Transforms/InstCombine/bitcast-vector-fold.ll +++ b/test/Transforms/InstCombine/bitcast-vector-fold.ll @@ -35,4 +35,4 @@ define <4 x i32> @test6() { define i32 @test7() { %tmp3 = bitcast <2 x half> <half 0xH1100, half 0xH0011> to i32 ret i32 %tmp3 -}
\ No newline at end of file +} diff --git a/test/Transforms/InstCombine/pr8547.ll b/test/Transforms/InstCombine/pr8547.ll index 485f4d9..7e9cbe1 100644 --- a/test/Transforms/InstCombine/pr8547.ll +++ b/test/Transforms/InstCombine/pr8547.ll @@ -23,4 +23,4 @@ for.cond: ; preds = %for.cond, %codeRepl codeRepl2: ; preds = %for.cond %call = call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([10 x i8]* @.str, i64 0, i64 0), i32 %conv2) nounwind ret i32 0 -}
\ No newline at end of file +} diff --git a/test/Transforms/ScalarRepl/2008-09-22-vector-gep.ll b/test/Transforms/ScalarRepl/2008-09-22-vector-gep.ll index e7a58f1..7554b7f 100644 --- a/test/Transforms/ScalarRepl/2008-09-22-vector-gep.ll +++ b/test/Transforms/ScalarRepl/2008-09-22-vector-gep.ll @@ -22,4 +22,4 @@ entry: ret void } -declare void @llvm.memmove.p0i8.p0i8.i32(i8* nocapture, i8* nocapture, i32, i32, i1) nounwind
\ No newline at end of file +declare void @llvm.memmove.p0i8.p0i8.i32(i8* nocapture, i8* nocapture, i32, i32, i1) nounwind diff --git a/test/Transforms/ScalarRepl/memset-aggregate.ll b/test/Transforms/ScalarRepl/memset-aggregate.ll index 95ecf17..3a5c37c 100644 --- a/test/Transforms/ScalarRepl/memset-aggregate.ll +++ b/test/Transforms/ScalarRepl/memset-aggregate.ll @@ -64,4 +64,4 @@ entry: } declare void @llvm.memcpy.p0i8.p0i8.i32(i8* nocapture, i8* nocapture, i32, i32, i1) nounwind -declare void @llvm.memset.p0i8.i32(i8* nocapture, i8, i32, i32, i1) nounwind
\ No newline at end of file +declare void @llvm.memset.p0i8.i32(i8* nocapture, i8, i32, i32, i1) nounwind |