[polly] r334661 - [test] Fix a typo in a test case [NFCI]

Tobias Grosser via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 13 14:46:29 PDT 2018


Author: grosser
Date: Wed Jun 13 14:46:29 2018
New Revision: 334661

URL: http://llvm.org/viewvc/llvm-project?rev=334661&view=rev
Log:
[test] Fix a typo in a test case [NFCI]

Also remove an undef value that does not add any value to the test case.

Modified:
    polly/trunk/test/ScopInfo/allow-all-parameters-dereferencable.ll

Modified: polly/trunk/test/ScopInfo/allow-all-parameters-dereferencable.ll
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/test/ScopInfo/allow-all-parameters-dereferencable.ll?rev=334661&r1=334660&r2=334661&view=diff
==============================================================================
--- polly/trunk/test/ScopInfo/allow-all-parameters-dereferencable.ll (original)
+++ polly/trunk/test/ScopInfo/allow-all-parameters-dereferencable.ll Wed Jun 13 14:46:29 2018
@@ -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:
   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




More information about the llvm-commits mailing list