Update Transforms tests to use CHECK-LABEL for easier debugging. No functionality...
authorStephen Lin <stephenwlin@gmail.com>
Sun, 14 Jul 2013 01:42:54 +0000 (01:42 +0000)
committerStephen Lin <stephenwlin@gmail.com>
Sun, 14 Jul 2013 01:42:54 +0000 (01:42 +0000)
commit39f4e8d9cce22b60a3417a5f17c847fa5b1daebf
tree7fed202a2c2c7866f60344b6388e0d3bd98cb14c
parent82e539d037a33f968e4a5476d3d471e1112f8ab2
Update Transforms tests to use CHECK-LABEL for easier debugging. No functionality change.

This update was done with the following bash script:

  find test/Transforms -name "*.ll" | \
  while read NAME; do
    echo "$NAME"
    if ! grep -q "^; *RUN: *llc" $NAME; then
      TEMP=`mktemp -t temp`
      cp $NAME $TEMP
      sed -n "s/^define [^@]*@\([A-Za-z0-9_]*\)(.*$/\1/p" < $NAME | \
      while read FUNC; do
        sed -i '' "s/;\(.*\)\([A-Za-z0-9_]*\):\( *\)@$FUNC\([( ]*\)\$/;\1\2-LABEL:\3@$FUNC(/g" $TEMP
      done
      mv $TEMP $NAME
    fi
  done

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186268 91177308-0d34-0410-b5e6-96231b3b80d8
444 files changed:
test/Transforms/BBVectorize/X86/cmp-types.ll
test/Transforms/BBVectorize/X86/loop1.ll
test/Transforms/BBVectorize/X86/sh-rec.ll
test/Transforms/BBVectorize/X86/sh-rec2.ll
test/Transforms/BBVectorize/X86/sh-rec3.ll
test/Transforms/BBVectorize/X86/sh-types.ll
test/Transforms/BBVectorize/X86/simple-int.ll
test/Transforms/BBVectorize/X86/simple-ldstr.ll
test/Transforms/BBVectorize/X86/simple.ll
test/Transforms/BBVectorize/X86/vs-cast.ll
test/Transforms/BBVectorize/cycle.ll
test/Transforms/BBVectorize/ld1.ll
test/Transforms/BBVectorize/loop1.ll
test/Transforms/BBVectorize/mem-op-depth.ll
test/Transforms/BBVectorize/metadata.ll
test/Transforms/BBVectorize/no-ldstr-conn.ll
test/Transforms/BBVectorize/req-depth.ll
test/Transforms/BBVectorize/search-limit.ll
test/Transforms/BBVectorize/simple-int.ll
test/Transforms/BBVectorize/simple-ldstr-ptrs.ll
test/Transforms/BBVectorize/simple-ldstr.ll
test/Transforms/BBVectorize/simple-sel.ll
test/Transforms/BBVectorize/simple-tst.ll
test/Transforms/BBVectorize/simple.ll
test/Transforms/BBVectorize/simple3.ll
test/Transforms/CodeGenPrepare/basic.ll
test/Transforms/ConstProp/basictest.ll
test/Transforms/ConstProp/bitcast.ll
test/Transforms/ConstProp/calls.ll
test/Transforms/ConstProp/extractvalue.ll
test/Transforms/ConstProp/insertvalue.ll
test/Transforms/ConstProp/loads.ll
test/Transforms/ConstProp/overflow-ops.ll
test/Transforms/CorrelatedValuePropagation/2010-09-02-Trunc.ll
test/Transforms/CorrelatedValuePropagation/basic.ll
test/Transforms/CorrelatedValuePropagation/range.ll
test/Transforms/DeadArgElim/deadexternal.ll
test/Transforms/DeadStoreElimination/2011-09-06-EndOfFunction.ll
test/Transforms/DeadStoreElimination/OverwriteStoreEnd.ll
test/Transforms/DeadStoreElimination/PartialStore.ll
test/Transforms/DeadStoreElimination/free.ll
test/Transforms/DeadStoreElimination/libcalls.ll
test/Transforms/DeadStoreElimination/lifetime.ll
test/Transforms/DeadStoreElimination/memintrinsics.ll
test/Transforms/DeadStoreElimination/simple.ll
test/Transforms/EarlyCSE/basic.ll
test/Transforms/EarlyCSE/commute.ll
test/Transforms/FunctionAttrs/noreturn.ll
test/Transforms/GVN/2010-11-13-Simplify.ll
test/Transforms/GVN/2011-06-01-NonLocalMemdepMiscompile.ll
test/Transforms/GVN/2011-07-07-MatchIntrinsicExtract.ll
test/Transforms/GVN/commute.ll
test/Transforms/GVN/condprop.ll
test/Transforms/GVN/load-pre-align.ll
test/Transforms/GVN/malloc-load-removal.ll
test/Transforms/GVN/non-local-offset.ll
test/Transforms/GVN/phi-translate.ll
test/Transforms/GVN/pr14166.ll
test/Transforms/GVN/pre-load.ll
test/Transforms/GVN/preserve-tbaa.ll
test/Transforms/GVN/rle-phi-translate.ll
test/Transforms/GVN/rle.ll
test/Transforms/GlobalOpt/2009-02-15-ResolveAlias.ll
test/Transforms/GlobalOpt/blockaddress.ll
test/Transforms/GlobalOpt/cleanup-pointer-root-users.ll
test/Transforms/GlobalOpt/ctor-list-opt-constexpr.ll
test/Transforms/GlobalOpt/integer-bool.ll
test/Transforms/GlobalOpt/load-store-global.ll
test/Transforms/GlobalOpt/metadata.ll
test/Transforms/GlobalOpt/tls.ll
test/Transforms/GlobalOpt/zeroinitializer-gep-load.ll
test/Transforms/IndVarSimplify/2011-10-27-lftrnull.ll
test/Transforms/IndVarSimplify/2011-11-01-lftrptr.ll
test/Transforms/IndVarSimplify/2011-11-17-selfphi.ll
test/Transforms/IndVarSimplify/2012-07-17-lftr-undef.ll
test/Transforms/IndVarSimplify/2012-10-19-congruent-constant.ll
test/Transforms/IndVarSimplify/dont-recompute.ll
test/Transforms/IndVarSimplify/eliminate-comparison.ll
test/Transforms/IndVarSimplify/eliminate-rem.ll
test/Transforms/IndVarSimplify/floating-point-iv.ll
test/Transforms/IndVarSimplify/iv-fold.ll
test/Transforms/IndVarSimplify/lftr-extend-const.ll
test/Transforms/IndVarSimplify/lftr-reuse.ll
test/Transforms/IndVarSimplify/tripcount_compute.ll
test/Transforms/IndVarSimplify/udiv-invariant-but-traps.ll
test/Transforms/IndVarSimplify/udiv.ll
test/Transforms/IndVarSimplify/ult-sub-to-eq.ll
test/Transforms/Inline/alloca-bonus.ll
test/Transforms/Inline/always-inline.ll
test/Transforms/Inline/basictest.ll
test/Transforms/Inline/devirtualize-2.ll
test/Transforms/Inline/devirtualize.ll
test/Transforms/Inline/dynamic_alloca_test.ll
test/Transforms/Inline/gvn-inline-iteration.ll
test/Transforms/Inline/inline-byval-bonus.ll
test/Transforms/Inline/inline_cleanup.ll
test/Transforms/Inline/inline_constprop.ll
test/Transforms/Inline/inline_minisize.ll
test/Transforms/Inline/lifetime-no-datalayout.ll
test/Transforms/Inline/lifetime.ll
test/Transforms/Inline/nested-inline.ll
test/Transforms/Inline/noinline-recursive-fn.ll
test/Transforms/Inline/ptr-diff.ll
test/Transforms/InstCombine/2008-11-20-DivMulRem.ll
test/Transforms/InstCombine/2010-03-03-ExtElim.ll
test/Transforms/InstCombine/2010-11-01-lshr-mask.ll
test/Transforms/InstCombine/2010-11-21-SizeZeroTypeGEP.ll
test/Transforms/InstCombine/2010-11-23-Distributed.ll
test/Transforms/InstCombine/2012-03-10-InstCombine.ll
test/Transforms/InstCombine/2012-04-24-vselect.ll
test/Transforms/InstCombine/2012-05-28-select-hang.ll
test/Transforms/InstCombine/2012-08-28-udiv_ashl.ll
test/Transforms/InstCombine/2012-09-17-ZeroSizedAlloca.ll
test/Transforms/InstCombine/2012-09-24-MemcpyFromGlobalCrash.ll
test/Transforms/InstCombine/2013-03-05-Combine-BitcastTy-Into-Alloca.ll
test/Transforms/InstCombine/ExtractCast.ll
test/Transforms/InstCombine/LandingPadClauses.ll
test/Transforms/InstCombine/abs-1.ll
test/Transforms/InstCombine/add2.ll
test/Transforms/InstCombine/add4.ll
test/Transforms/InstCombine/align-addr.ll
test/Transforms/InstCombine/align-external.ll
test/Transforms/InstCombine/alloca.ll
test/Transforms/InstCombine/and-xor-or.ll
test/Transforms/InstCombine/and2.ll
test/Transforms/InstCombine/apint-shift-simplify.ll
test/Transforms/InstCombine/apint-shift.ll
test/Transforms/InstCombine/apint-shl-trunc.ll
test/Transforms/InstCombine/badmalloc.ll
test/Transforms/InstCombine/bitcast-bigendian.ll
test/Transforms/InstCombine/bitcast-vec-uniform.ll
test/Transforms/InstCombine/bitcast.ll
test/Transforms/InstCombine/call.ll
test/Transforms/InstCombine/canonicalize_branch.ll
test/Transforms/InstCombine/cast.ll
test/Transforms/InstCombine/cast_ptr.ll
test/Transforms/InstCombine/compare-signs.ll
test/Transforms/InstCombine/constant-fold-gep.ll
test/Transforms/InstCombine/cos-1.ll
test/Transforms/InstCombine/cos-2.ll
test/Transforms/InstCombine/disable-simplify-libcalls.ll
test/Transforms/InstCombine/div.ll
test/Transforms/InstCombine/exact.ll
test/Transforms/InstCombine/exp2-1.ll
test/Transforms/InstCombine/exp2-2.ll
test/Transforms/InstCombine/fast-math.ll
test/Transforms/InstCombine/fcmp.ll
test/Transforms/InstCombine/fdiv.ll
test/Transforms/InstCombine/ffs-1.ll
test/Transforms/InstCombine/float-shrink-compare.ll
test/Transforms/InstCombine/fmul.ll
test/Transforms/InstCombine/fold-bin-operand.ll
test/Transforms/InstCombine/fold-calls.ll
test/Transforms/InstCombine/fprintf-1.ll
test/Transforms/InstCombine/fputs-1.ll
test/Transforms/InstCombine/fwrite-1.ll
test/Transforms/InstCombine/getelementptr.ll
test/Transforms/InstCombine/icmp.ll
test/Transforms/InstCombine/idioms.ll
test/Transforms/InstCombine/intrinsics.ll
test/Transforms/InstCombine/invoke.ll
test/Transforms/InstCombine/isascii-1.ll
test/Transforms/InstCombine/isdigit-1.ll
test/Transforms/InstCombine/load-cmp.ll
test/Transforms/InstCombine/load-select.ll
test/Transforms/InstCombine/load3.ll
test/Transforms/InstCombine/malloc-free-delete.ll
test/Transforms/InstCombine/memcmp-1.ll
test/Transforms/InstCombine/memcmp-2.ll
test/Transforms/InstCombine/memcpy-1.ll
test/Transforms/InstCombine/memcpy-2.ll
test/Transforms/InstCombine/memcpy-from-global.ll
test/Transforms/InstCombine/memcpy_chk-1.ll
test/Transforms/InstCombine/memcpy_chk-2.ll
test/Transforms/InstCombine/memmove-1.ll
test/Transforms/InstCombine/memmove-2.ll
test/Transforms/InstCombine/memmove_chk-1.ll
test/Transforms/InstCombine/memmove_chk-2.ll
test/Transforms/InstCombine/memset-1.ll
test/Transforms/InstCombine/memset-2.ll
test/Transforms/InstCombine/memset_chk-1.ll
test/Transforms/InstCombine/memset_chk-2.ll
test/Transforms/InstCombine/merge-icmp.ll
test/Transforms/InstCombine/mul.ll
test/Transforms/InstCombine/no-negzero.ll
test/Transforms/InstCombine/nsw.ll
test/Transforms/InstCombine/objsize-64.ll
test/Transforms/InstCombine/objsize.ll
test/Transforms/InstCombine/or-fcmp.ll
test/Transforms/InstCombine/or-xor.ll
test/Transforms/InstCombine/or.ll
test/Transforms/InstCombine/overflow.ll
test/Transforms/InstCombine/phi.ll
test/Transforms/InstCombine/pow-1.ll
test/Transforms/InstCombine/pow-2.ll
test/Transforms/InstCombine/printf-1.ll
test/Transforms/InstCombine/printf-2.ll
test/Transforms/InstCombine/ptr-int-cast.ll
test/Transforms/InstCombine/puts-1.ll
test/Transforms/InstCombine/rem.ll
test/Transforms/InstCombine/select-crash.ll
test/Transforms/InstCombine/select.ll
test/Transforms/InstCombine/sext.ll
test/Transforms/InstCombine/shift-sra.ll
test/Transforms/InstCombine/shift.ll
test/Transforms/InstCombine/sign-test-and-or.ll
test/Transforms/InstCombine/signext.ll
test/Transforms/InstCombine/simplify-libcalls.ll
test/Transforms/InstCombine/sink_instruction.ll
test/Transforms/InstCombine/sprintf-1.ll
test/Transforms/InstCombine/sqrt.ll
test/Transforms/InstCombine/store.ll
test/Transforms/InstCombine/stpcpy-1.ll
test/Transforms/InstCombine/stpcpy-2.ll
test/Transforms/InstCombine/stpcpy_chk-1.ll
test/Transforms/InstCombine/stpcpy_chk-2.ll
test/Transforms/InstCombine/strcat-1.ll
test/Transforms/InstCombine/strcat-2.ll
test/Transforms/InstCombine/strcat-3.ll
test/Transforms/InstCombine/strcmp-1.ll
test/Transforms/InstCombine/strcmp-2.ll
test/Transforms/InstCombine/strcpy-1.ll
test/Transforms/InstCombine/strcpy-2.ll
test/Transforms/InstCombine/strcpy_chk-1.ll
test/Transforms/InstCombine/strcpy_chk-2.ll
test/Transforms/InstCombine/strcpy_chk-64.ll
test/Transforms/InstCombine/strcspn-1.ll
test/Transforms/InstCombine/strcspn-2.ll
test/Transforms/InstCombine/strlen-1.ll
test/Transforms/InstCombine/strlen-2.ll
test/Transforms/InstCombine/strncat-1.ll
test/Transforms/InstCombine/strncat-2.ll
test/Transforms/InstCombine/strncat-3.ll
test/Transforms/InstCombine/strncmp-1.ll
test/Transforms/InstCombine/strncmp-2.ll
test/Transforms/InstCombine/strncpy-1.ll
test/Transforms/InstCombine/strncpy-2.ll
test/Transforms/InstCombine/strncpy_chk-1.ll
test/Transforms/InstCombine/strncpy_chk-2.ll
test/Transforms/InstCombine/strpbrk-1.ll
test/Transforms/InstCombine/strpbrk-2.ll
test/Transforms/InstCombine/strrchr-1.ll
test/Transforms/InstCombine/strspn-1.ll
test/Transforms/InstCombine/strstr-1.ll
test/Transforms/InstCombine/strstr-2.ll
test/Transforms/InstCombine/strto-1.ll
test/Transforms/InstCombine/struct-assign-tbaa.ll
test/Transforms/InstCombine/sub-xor.ll
test/Transforms/InstCombine/sub.ll
test/Transforms/InstCombine/toascii-1.ll
test/Transforms/InstCombine/trunc.ll
test/Transforms/InstCombine/udivrem-change-width.ll
test/Transforms/InstCombine/vec_demanded_elts.ll
test/Transforms/InstCombine/vec_shuffle.ll
test/Transforms/InstCombine/vector-casts.ll
test/Transforms/InstCombine/vector-mul.ll
test/Transforms/InstCombine/vector_gep2.ll
test/Transforms/InstCombine/win-math.ll
test/Transforms/InstCombine/xor2.ll
test/Transforms/InstCombine/zext-bool-add-sub.ll
test/Transforms/InstSimplify/2010-12-20-Boolean.ll
test/Transforms/InstSimplify/2010-12-20-Distribute.ll
test/Transforms/InstSimplify/2011-01-14-Thread.ll
test/Transforms/InstSimplify/2011-02-01-Vector.ll
test/Transforms/InstSimplify/2011-09-05-InsertExtractValue.ll
test/Transforms/InstSimplify/AndOrXor.ll
test/Transforms/InstSimplify/call.ll
test/Transforms/InstSimplify/compare.ll
test/Transforms/InstSimplify/exact-nsw-nuw.ll
test/Transforms/InstSimplify/fast-math.ll
test/Transforms/InstSimplify/fdiv.ll
test/Transforms/InstSimplify/floating-point-arithmetic.ll
test/Transforms/InstSimplify/maxmin.ll
test/Transforms/InstSimplify/phi.ll
test/Transforms/InstSimplify/ptr_diff.ll
test/Transforms/InstSimplify/reassociate.ll
test/Transforms/InstSimplify/rem.ll
test/Transforms/JumpThreading/basic.ll
test/Transforms/JumpThreading/indirectbr.ll
test/Transforms/JumpThreading/select.ll
test/Transforms/JumpThreading/thread-loads.ll
test/Transforms/LICM/hoisting.ll
test/Transforms/LICM/scalar_promote.ll
test/Transforms/LICM/sinking.ll
test/Transforms/LICM/speculate.ll
test/Transforms/LoopIdiom/basic.ll
test/Transforms/LoopIdiom/memset_noidiom.ll
test/Transforms/LoopRotate/basic.ll
test/Transforms/LoopRotate/multiple-exits.ll
test/Transforms/LoopRotate/simplifylatch.ll
test/Transforms/LoopSimplify/preserve-scev.ll
test/Transforms/LoopStrengthReduce/2011-10-03-CritEdgeMerge.ll
test/Transforms/LoopStrengthReduce/2011-10-06-ReusePhi.ll
test/Transforms/LoopStrengthReduce/2011-10-13-SCEVChain.ll
test/Transforms/LoopStrengthReduce/2011-10-14-IntPtr.ll
test/Transforms/LoopStrengthReduce/2011-12-19-PostincQuadratic.ll
test/Transforms/LoopStrengthReduce/2012-01-02-nopreheader.ll
test/Transforms/LoopStrengthReduce/2012-01-16-nopreheader.ll
test/Transforms/LoopStrengthReduce/2012-03-15-nopreheader.ll
test/Transforms/LoopStrengthReduce/2012-07-13-ExpandUDiv.ll
test/Transforms/LoopStrengthReduce/2013-01-05-IndBr.ll
test/Transforms/LoopStrengthReduce/2013-01-14-ReuseCast.ll
test/Transforms/LoopStrengthReduce/X86/2011-07-20-DoubleIV.ll
test/Transforms/LoopStrengthReduce/X86/2011-12-04-loserreg.ll
test/Transforms/LoopStrengthReduce/ivchain.ll
test/Transforms/LoopStrengthReduce/scaling_factor_cost_crash.ll
test/Transforms/LoopStrengthReduce/uglygep.ll
test/Transforms/LoopUnroll/2011-08-08-PhiUpdate.ll
test/Transforms/LoopUnroll/2011-08-09-PhiUpdate.ll
test/Transforms/LoopUnroll/2011-10-01-NoopTrunc.ll
test/Transforms/LoopUnroll/basic.ll
test/Transforms/LoopUnroll/pr14167.ll
test/Transforms/LoopUnroll/scevunroll.ll
test/Transforms/LoopUnroll/unloop.ll
test/Transforms/LoopUnswitch/basictest.ll
test/Transforms/LoopUnswitch/infinite-loop.ll
test/Transforms/LoopVectorize/12-12-11-if-conv.ll
test/Transforms/LoopVectorize/ARM/arm-unroll.ll
test/Transforms/LoopVectorize/ARM/gcc-examples.ll
test/Transforms/LoopVectorize/X86/avx1.ll
test/Transforms/LoopVectorize/X86/conversion-cost.ll
test/Transforms/LoopVectorize/X86/gcc-examples.ll
test/Transforms/LoopVectorize/X86/illegal-parallel-loop-uniform-write.ll
test/Transforms/LoopVectorize/X86/parallel-loops.ll
test/Transforms/LoopVectorize/X86/reduction-crash.ll
test/Transforms/LoopVectorize/X86/small-size.ll
test/Transforms/LoopVectorize/X86/unroll-small-loops.ll
test/Transforms/LoopVectorize/X86/x86_fp80-vector-store.ll
test/Transforms/LoopVectorize/cast-induction.ll
test/Transforms/LoopVectorize/cpp-new-array.ll
test/Transforms/LoopVectorize/dbg.value.ll
test/Transforms/LoopVectorize/flags.ll
test/Transforms/LoopVectorize/float-reduction.ll
test/Transforms/LoopVectorize/gcc-examples.ll
test/Transforms/LoopVectorize/if-conversion-nest.ll
test/Transforms/LoopVectorize/if-conversion-reduction.ll
test/Transforms/LoopVectorize/if-conversion.ll
test/Transforms/LoopVectorize/increment.ll
test/Transforms/LoopVectorize/induction_plus.ll
test/Transforms/LoopVectorize/intrinsic.ll
test/Transforms/LoopVectorize/memdep.ll
test/Transforms/LoopVectorize/metadata-unroll.ll
test/Transforms/LoopVectorize/metadata-width.ll
test/Transforms/LoopVectorize/minmax_reduction.ll
test/Transforms/LoopVectorize/multiple-address-spaces.ll
test/Transforms/LoopVectorize/no_idiv_reduction.ll
test/Transforms/LoopVectorize/no_int_induction.ll
test/Transforms/LoopVectorize/nofloat.ll
test/Transforms/LoopVectorize/non-const-n.ll
test/Transforms/LoopVectorize/read-only.ll
test/Transforms/LoopVectorize/reduction.ll
test/Transforms/LoopVectorize/reverse_iter.ll
test/Transforms/LoopVectorize/same-base-access.ll
test/Transforms/LoopVectorize/scalar-select.ll
test/Transforms/LoopVectorize/scev-exitlim-crash.ll
test/Transforms/LoopVectorize/simple-unroll.ll
test/Transforms/LoopVectorize/small-loop.ll
test/Transforms/LoopVectorize/start-non-zero.ll
test/Transforms/LoopVectorize/store-shuffle-bug.ll
test/Transforms/LoopVectorize/struct_access.ll
test/Transforms/LoopVectorize/undef-inst-bug.ll
test/Transforms/LoopVectorize/write-only.ll
test/Transforms/LowerAtomic/atomic-load.ll
test/Transforms/LowerAtomic/atomic-swap.ll
test/Transforms/LowerAtomic/barrier.ll
test/Transforms/LowerExpectIntrinsic/basic.ll
test/Transforms/Mem2Reg/atomic.ll
test/Transforms/MemCpyOpt/align.ll
test/Transforms/MemCpyOpt/form-memset.ll
test/Transforms/MemCpyOpt/loadstore-sret.ll
test/Transforms/MemCpyOpt/memcpy-to-memset.ll
test/Transforms/MemCpyOpt/memcpy.ll
test/Transforms/MemCpyOpt/memmove.ll
test/Transforms/ObjCARC/retain-not-declared.ll
test/Transforms/PhaseOrdering/PR6627.ll
test/Transforms/PhaseOrdering/basic.ll
test/Transforms/Reassociate/2012-05-08-UndefLeak.ll
test/Transforms/Reassociate/absorption.ll
test/Transforms/Reassociate/basictest.ll
test/Transforms/Reassociate/inverses.ll
test/Transforms/Reassociate/mulfactor.ll
test/Transforms/Reassociate/multistep.ll
test/Transforms/Reassociate/no-op.ll
test/Transforms/Reassociate/optional-flags.ll
test/Transforms/Reassociate/repeats.ll
test/Transforms/Reassociate/xor_reassoc.ll
test/Transforms/SCCP/ipsccp-addr-taken.ll
test/Transforms/SCCP/ipsccp-basic.ll
test/Transforms/SCCP/sccptest.ll
test/Transforms/SCCP/undef-resolve.ll
test/Transforms/SLPVectorizer/X86/barriercall.ll
test/Transforms/SLPVectorizer/X86/cast.ll
test/Transforms/SLPVectorizer/X86/cmp_sel.ll
test/Transforms/SLPVectorizer/X86/compare-reduce.ll
test/Transforms/SLPVectorizer/X86/cross_block_slp.ll
test/Transforms/SLPVectorizer/X86/cse.ll
test/Transforms/SLPVectorizer/X86/diamond.ll
test/Transforms/SLPVectorizer/X86/in-tree-user.ll
test/Transforms/SLPVectorizer/X86/loopinvariant.ll
test/Transforms/SLPVectorizer/X86/multi_block.ll
test/Transforms/SLPVectorizer/X86/multi_user.ll
test/Transforms/SLPVectorizer/X86/odd_store.ll
test/Transforms/SLPVectorizer/X86/reduction2.ll
test/Transforms/SLPVectorizer/X86/rgb_phi.ll
test/Transforms/SROA/alignment.ll
test/Transforms/SROA/basictest.ll
test/Transforms/SROA/big-endian.ll
test/Transforms/SROA/fca.ll
test/Transforms/SROA/phi-and-select.ll
test/Transforms/SROA/vector-promotion.ll
test/Transforms/ScalarRepl/2009-12-11-NeonTypes.ll
test/Transforms/ScalarRepl/2010-01-18-SelfCopy.ll
test/Transforms/ScalarRepl/2011-10-22-VectorCrash.ll
test/Transforms/ScalarRepl/badarray.ll
test/Transforms/ScalarRepl/basictest.ll
test/Transforms/ScalarRepl/lifetime.ll
test/Transforms/ScalarRepl/nonzero-first-index.ll
test/Transforms/ScalarRepl/only-memcpy-uses.ll
test/Transforms/ScalarRepl/phi-select.ll
test/Transforms/ScalarRepl/vector_promote.ll
test/Transforms/SimplifyCFG/2009-01-19-UnconditionalTrappingConstantExpr.ll
test/Transforms/SimplifyCFG/SPARC/switch_to_lookup_table.ll
test/Transforms/SimplifyCFG/SpeculativeExec.ll
test/Transforms/SimplifyCFG/UnreachableEliminate.ll
test/Transforms/SimplifyCFG/X86/switch_to_lookup_table.ll
test/Transforms/SimplifyCFG/basictest.ll
test/Transforms/SimplifyCFG/dce-cond-after-folding-terminator.ll
test/Transforms/SimplifyCFG/indirectbr.ll
test/Transforms/SimplifyCFG/invoke.ll
test/Transforms/SimplifyCFG/invoke_unwind.ll
test/Transforms/SimplifyCFG/phi-undef-loadstore.ll
test/Transforms/SimplifyCFG/preserve-branchweights.ll
test/Transforms/SimplifyCFG/select-gep.ll
test/Transforms/SimplifyCFG/speculate-store.ll
test/Transforms/SimplifyCFG/speculate-with-offset.ll
test/Transforms/SimplifyCFG/switch-masked-bits.ll
test/Transforms/SimplifyCFG/switch-on-const-select.ll
test/Transforms/SimplifyCFG/switch-to-icmp.ll
test/Transforms/SimplifyCFG/switch_create.ll
test/Transforms/SimplifyCFG/trapping-load-unreachable.ll
test/Transforms/SimplifyCFG/volatile-phioper.ll
test/Transforms/Sink/basic.ll
test/Transforms/TailCallElim/accum_recursion.ll
test/Transforms/TailCallElim/basic.ll