diff options
author | Alexander Kornienko <alexfh@google.com> | 2013-03-26 02:28:59 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2013-03-26 02:28:59 +0000 |
commit | d934545ae6a00aa8a8179a93d11cbd93a5240849 (patch) | |
tree | ab44db08aa63a8f94a3e09d6491c4156c624af96 /test/Transforms/IndVarSimplify/Stats | |
parent | 868d4470cdfa9472353ea2a49a6c456ddae9c95b (diff) | |
parent | c204410d6bc435e7cb8ea768759a54135e8e92b5 (diff) |
Updating branches/google/testing to r177703testing
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/google/testing@177985 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/IndVarSimplify/Stats')
-rw-r--r-- | test/Transforms/IndVarSimplify/Stats/lit.local.cfg | 4 | ||||
-rw-r--r-- | test/Transforms/IndVarSimplify/Stats/phi-uses-value-multiple-times.ll | 37 |
2 files changed, 0 insertions, 41 deletions
diff --git a/test/Transforms/IndVarSimplify/Stats/lit.local.cfg b/test/Transforms/IndVarSimplify/Stats/lit.local.cfg deleted file mode 100644 index 89c0cd9d48..0000000000 --- a/test/Transforms/IndVarSimplify/Stats/lit.local.cfg +++ /dev/null @@ -1,4 +0,0 @@ -config.suffixes = ['.ll', '.c', '.cpp'] - -if not config.root.enable_assertions: - config.unsupported = True diff --git a/test/Transforms/IndVarSimplify/Stats/phi-uses-value-multiple-times.ll b/test/Transforms/IndVarSimplify/Stats/phi-uses-value-multiple-times.ll deleted file mode 100644 index 52c9e5c3ff..0000000000 --- a/test/Transforms/IndVarSimplify/Stats/phi-uses-value-multiple-times.ll +++ /dev/null @@ -1,37 +0,0 @@ -; RUN: opt < %s -indvars -disable-output -stats -info-output-file - | FileCheck %s -; Check that IndVarSimplify is not creating unnecessary canonical IVs -; that will never be used. -; CHECK-NOT: indvars - -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" - -@ue = external global i64 - -define i32 @foo() nounwind { -entry: - br label %bb38.i - -bb14.i27: - %t0 = load i64* @ue, align 8 - %t1 = sub i64 %t0, %i.0.i35 - %t2 = add i64 %t1, 1 - br i1 undef, label %bb15.i28, label %bb19.i31 - -bb15.i28: - br label %bb19.i31 - -bb19.i31: - %y.0.i = phi i64 [ %t2, %bb15.i28 ], [ %t2, %bb14.i27 ] - br label %bb35.i - -bb35.i: - br i1 undef, label %bb37.i, label %bb14.i27 - -bb37.i: - %t3 = add i64 %i.0.i35, 1 - br label %bb38.i - -bb38.i: - %i.0.i35 = phi i64 [ 1, %entry ], [ %t3, %bb37.i ] - br label %bb35.i -} |