aboutsummaryrefslogtreecommitdiff
path: root/polly/test/CodeGen/simple_vec_cast.ll
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/CodeGen/simple_vec_cast.ll')
-rw-r--r--polly/test/CodeGen/simple_vec_cast.ll38
1 files changed, 0 insertions, 38 deletions
diff --git a/polly/test/CodeGen/simple_vec_cast.ll b/polly/test/CodeGen/simple_vec_cast.ll
deleted file mode 100644
index 7578663..0000000
--- a/polly/test/CodeGen/simple_vec_cast.ll
+++ /dev/null
@@ -1,38 +0,0 @@
-; RUN: opt -opaque-pointers=0 %loadPolly -basic-aa -polly-codegen -polly-vectorizer=polly \
-; RUN: -polly-invariant-load-hoisting=true -dce -S < %s | FileCheck %s
-target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
-
-@A = common global [1024 x float] zeroinitializer, align 16
-@B = common global [1024 x double] zeroinitializer, align 16
-
-define void @simple_vec_const() nounwind {
-bb:
- br label %bb1
-
-bb1: ; preds = %bb3, %bb
- %indvar = phi i64 [ %indvar.next, %bb3 ], [ 0, %bb ]
- %scevgep = getelementptr [1024 x double], [1024 x double]* @B, i64 0, i64 %indvar
- %exitcond = icmp ne i64 %indvar, 4
- br i1 %exitcond, label %bb2, label %bb4
-
-bb2: ; preds = %bb1
- %tmp = load float, float* getelementptr inbounds ([1024 x float], [1024 x float]* @A, i64 0, i64 0), align 16
- %tmp2 = fpext float %tmp to double
- store double %tmp2, double* %scevgep, align 4
- br label %bb3
-
-bb3: ; preds = %bb2
- %indvar.next = add i64 %indvar, 1
- br label %bb1
-
-bb4: ; preds = %bb1
- ret void
-}
-
-; CHECK: %.load = load float, float* getelementptr inbounds ([1024 x float], [1024 x float]* @A, i32 0, i32 0)
-
-; CHECK: polly.stmt.bb2: ; preds = %polly.start
-; CHECK: %tmp_p.splatinsert = insertelement <4 x float> poison, float %.load, i64 0
-; CHECK: %tmp_p.splat = shufflevector <4 x float> %tmp_p.splatinsert, <4 x float> poison, <4 x i32> zeroinitializer
-; CHECK: %0 = fpext <4 x float> %tmp_p.splat to <4 x double>
-; CHECK: store <4 x double> %0, <4 x double>*