Forbid arrays of function-type and structures with function-typed fields.
[llvm/avr.git] / test / Transforms / JumpThreading / undef.ll
blob404aecf8613aebaf0bc12498054424e7ee3af39b
1 ; RUN: opt < %s -jump-threading -S | not grep {br }
2 ; RUN: opt < %s -jump-threading -S | grep {ret i32} | count 1
4 define i32 @test(i1 %cond) {
5         br i1 undef, label %T1, label %F1
7 T1:
8         ret i32 42
10 F1:
11         ret i32 17