diff options
author | Nadav Rotem <nrotem@apple.com> | 2013-01-05 01:15:47 +0000 |
---|---|---|
committer | Nadav Rotem <nrotem@apple.com> | 2013-01-05 01:15:47 +0000 |
commit | e9f5bfd5e905338fd93d6c89b8579e68deff567f (patch) | |
tree | 92d2e6d77206c4792b2484e0cdbd7165fb9042a3 /llvm/test/Transforms/LoopVectorize/gcc-examples.ll | |
parent | 6d9dafe3ffec06cce37c1bd930e24f2de042887c (diff) | |
download | bcm5719-llvm-e9f5bfd5e905338fd93d6c89b8579e68deff567f.tar.gz bcm5719-llvm-e9f5bfd5e905338fd93d6c89b8579e68deff567f.zip |
iLoopVectorize: Non commutative operators can be used as reduction variables as long as the reduction chain is used in the LHS.
PR14803.
llvm-svn: 171583
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 de3f59f41af..b8b125f3ee7 100644 --- a/llvm/test/Transforms/LoopVectorize/gcc-examples.ll +++ b/llvm/test/Transforms/LoopVectorize/gcc-examples.ll @@ -241,7 +241,7 @@ define void @example8(i32 %x) nounwind uwtable ssp { } ;CHECK: @example9 -;CHECK-NOT: phi <4 x i32> +;CHECK: phi <4 x i32> ;CHECK: ret i32 define i32 @example9() nounwind uwtable readonly ssp { br label %1 |