diff options
author | Tobias Grosser <tobias@grosser.es> | 2018-06-13 21:46:29 +0000 |
---|---|---|
committer | Tobias Grosser <tobias@grosser.es> | 2018-06-13 21:46:29 +0000 |
commit | ee5762cfab842fb800bd91cae2994a748f07435b (patch) | |
tree | 0474cd577e82d600018d4daa770cb34465a96ef2 | |
parent | 3fc66075c7ae396f52d2418d38307de45257fde1 (diff) | |
download | bcm5719-llvm-ee5762cfab842fb800bd91cae2994a748f07435b.tar.gz bcm5719-llvm-ee5762cfab842fb800bd91cae2994a748f07435b.zip |
[test] Fix a typo in a test case [NFCI]
Also remove an undef value that does not add any value to the test case.
llvm-svn: 334661
-rw-r--r-- | polly/test/ScopInfo/allow-all-parameters-dereferencable.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/polly/test/ScopInfo/allow-all-parameters-dereferencable.ll b/polly/test/ScopInfo/allow-all-parameters-dereferencable.ll index 426186e3b39..0939f4ba278 100644 --- a/polly/test/ScopInfo/allow-all-parameters-dereferencable.ll +++ b/polly/test/ScopInfo/allow-all-parameters-dereferencable.ll @@ -22,7 +22,7 @@ ; SCOP-NEXT: Execution Context: [tmp, tmp17, tmp28] -> { : } ; SCOP-NEXT: } -; Check that without the option `-pollt-allow-dereference-of-all-function-parameters` +; Check that without the option `-polly-allow-dereference-of-all-function-parameters` ; we do generate the runtime check. ; CODE-RTC: polly.preload.cond: ; preds = %polly.preload.begin ; CODE-RTC-NEXT: br i1 %{{[a-zA-Z0-9]*}}, label %polly.preload.exec, label %polly.preload.merge @@ -79,7 +79,7 @@ bb29: ; preds = %bb35, %bb27 br label %bb31 bb31: ; preds = %bb31, %bb29 - %tmp32 = phi i32 [ undef, %bb31 ], [ 1, %bb29 ] + %tmp32 = phi i32 [ 1, %bb31 ], [ 1, %bb29 ] store float 42.0, float* %A %tmp33 = icmp eq i32 %tmp32, %tmp30 br i1 %tmp33, label %bb34, label %bb31 |