[polly] r244478 - Correct non-existing past participle of split in filename

Michael Kruse via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 10 11:37:34 PDT 2015


Author: meinersbur
Date: Mon Aug 10 13:37:34 2015
New Revision: 244478

URL: http://llvm.org/viewvc/llvm-project?rev=244478&view=rev
Log:
Correct non-existing past participle of split in filename 


Added:
    polly/trunk/test/Isl/CodeGen/loop_with_conditional_entry_edge_split_hard_case.ll
      - copied unchanged from r244477, polly/trunk/test/Isl/CodeGen/loop_with_conditional_entry_edge_splited_hard_case.ll
Removed:
    polly/trunk/test/Isl/CodeGen/loop_with_conditional_entry_edge_splited_hard_case.ll

Removed: polly/trunk/test/Isl/CodeGen/loop_with_conditional_entry_edge_splited_hard_case.ll
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/test/Isl/CodeGen/loop_with_conditional_entry_edge_splited_hard_case.ll?rev=244477&view=auto
==============================================================================
--- polly/trunk/test/Isl/CodeGen/loop_with_conditional_entry_edge_splited_hard_case.ll (original)
+++ polly/trunk/test/Isl/CodeGen/loop_with_conditional_entry_edge_splited_hard_case.ll (removed)
@@ -1,63 +0,0 @@
-; RUN: opt %loadPolly -polly-detect-unprofitable -polly-no-early-exit -polly-codegen -S < %s | FileCheck %s
-;
-; Test case to trigger the hard way of creating a unique entering
-; edge for the SCoP. It is triggered because the entering edge
-; here: %while.begin --> %if is __not__ critical.
-;
-;    int f(void);
-;    void jd(int b, int *A) {
-;      while (f()) {
-;        if (b)
-;          for (int i = 0; i < 1024; i++)
-;            A[i] = i;
-;      }
-;    }
-;
-target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
-
-define void @jd(i32 %b, i32* %A) {
-entry:
-  br label %while.begin
-
-; CHECK: while.begin:
-while.begin:
-; CHECK:  %call = call i32 @f()
-  %call = call i32 @f()
-; CHECK:  %tobool = icmp eq i32 %call, 0
-  %tobool = icmp eq i32 %call, 0
-; CHECK:  br i1 %tobool, label %while.end, label %polly.entering.block
-  br i1 %tobool, label %while.end, label %if
-
-; CHECK: polly.entering.block:
-; CHECK:   br label %polly.split_new_and_old
-
-; CHECK: polly.split_new_and_old:
-; CHECK:   br i1 true, label %polly.start, label %if.split
-
-; CHECK: if.split:
-if:                                               ; preds = %while.begin
-; CHECK: %tobool2 = icmp eq i32 %b, 0
-  %tobool2 = icmp eq i32 %b, 0
-; CHECK: br i1 %tobool2, label %while.begin{{[a-zA-Z._]*}}, label %for.cond
-  br i1 %tobool2, label %while.begin, label %for.cond
-
-for.cond:                                         ; preds = %for.inc, %if
-  %indvars.iv = phi i64 [ %indvars.iv.next, %for.inc ], [ 0, %if ]
-  %exitcond = icmp ne i64 %indvars.iv, 1024
-  br i1 %exitcond, label %for.body, label %while.begin
-
-for.body:                                         ; preds = %for.cond
-  %arrayidx = getelementptr inbounds i32, i32* %A, i64 %indvars.iv
-  %tmp = trunc i64 %indvars.iv to i32
-  store i32 %tmp, i32* %arrayidx, align 4
-  br label %for.inc
-
-for.inc:                                          ; preds = %for.body
-  %indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
-  br label %for.cond
-
-while.end:                                        ; preds = %entry, %for.cond
-  ret void
-}
-
-declare i32 @f()




More information about the llvm-commits mailing list