[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / Transforms / CodeGenPrepare / dom-tree.ll
blob28c3b94dcfd974a37324a1b31f3e89a1b09e37fb
1 ; RUN: opt -S -loop-unroll -codegenprepare < %s -domtree -analyze | FileCheck %s
3 ; Checks that the dom tree is properly invalidated after an operation that will
4 ; invalidate it in CodeGenPrepare. If the domtree isn't properly invalidated,
5 ; this will likely segfault, or print badref.
7 ; CHECK-NOT: <badref>
9 target datalayout = "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64"
10 target triple = "armv7--linux-gnueabihf"
12 define i32 @f(i32 %a) #0 {
13 entry:
14   br label %for.body
16 for.cond.cleanup:
17   ret i32 %or
19 for.body:
20   %i.08 = phi i32 [ 0, %entry ], [ %inc, %for.body ]
21   %b.07 = phi i32 [ 0, %entry ], [ %or, %for.body ]
22   %shr = lshr i32 %a, %i.08
23   %and = and i32 %shr, 1
24   %sub = sub nuw nsw i32 31, %i.08
25   %shl = shl i32 %and, %sub
26   %or = or i32 %shl, %b.07
27   %inc = add nuw nsw i32 %i.08, 1
28   %exitcond = icmp eq i32 %inc, 32
29   br i1 %exitcond, label %for.cond.cleanup, label %for.body, !llvm.loop !3
32 attributes #0 = { norecurse nounwind readnone "disable-tail-calls"="false" "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "target-cpu"="cortex-a8" "target-features"="+dsp,+neon,+vfp3" "unsafe-fp-math"="false" "use-soft-float"="false" }
34 !llvm.module.flags = !{!0, !1}
35 !llvm.ident = !{!2}
37 !0 = !{i32 1, !"wchar_size", i32 4}
38 !1 = !{i32 1, !"min_enum_size", i32 4}
39 !2 = !{!"clang version 3.8.0"}
40 !3 = distinct !{!3, !4}
41 !4 = !{!"llvm.loop.unroll.full"}