diff options
author | Nadav Rotem <nrotem@apple.com> | 2012-12-11 18:58:10 +0000 |
---|---|---|
committer | Nadav Rotem <nrotem@apple.com> | 2012-12-11 18:58:10 +0000 |
commit | e266efb70bfdd0c546a83455ce54372360712545 (patch) | |
tree | ade8ca80438c78ffa6e0c9cda5088aaacd630b52 /llvm/test/Transforms/LoopVectorize/gcc-examples.ll | |
parent | c2e3d5cb2980b06fd51b8f535561fe2ecd2c8a55 (diff) | |
download | bcm5719-llvm-e266efb70bfdd0c546a83455ce54372360712545.tar.gz bcm5719-llvm-e266efb70bfdd0c546a83455ce54372360712545.zip |
Loop Vectorize: optimize the vectorization of trunc(induction_var). The truncation is now done on scalars.
llvm-svn: 169904
Diffstat (limited to 'llvm/test/Transforms/LoopVectorize/gcc-examples.ll')
-rw-r--r-- | llvm/test/Transforms/LoopVectorize/gcc-examples.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/Transforms/LoopVectorize/gcc-examples.ll b/llvm/test/Transforms/LoopVectorize/gcc-examples.ll index f1bf6cb6d83..4fabc8e2d39 100644 --- a/llvm/test/Transforms/LoopVectorize/gcc-examples.ll +++ b/llvm/test/Transforms/LoopVectorize/gcc-examples.ll @@ -329,7 +329,7 @@ define void @example11() nounwind uwtable ssp { } ;CHECK: @example12 -;CHECK: trunc <4 x i64> +;CHECK: trunc i64 ;CHECK: store <4 x i32> ;CHECK: ret void define void @example12() nounwind uwtable ssp { |