[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / Generic / pr33094.ll
blobafa464f63f6633d0659a81a2352602a53054b5f9
1 ; RUN: llc < %s
3 ; PR33094
4 ; Make sure that a constant extractvalue doesn't cause a crash in
5 ; SelectionDAGBuilder::visitExtractValue.
7 %A = type {}
8 %B = type {}
9 %Tuple = type { i64 }
11 @A_Inst = global %A zeroinitializer
12 @B_Inst = global %B zeroinitializer
14 define i64 @foo() {
15   ret i64 extractvalue (%Tuple select (i1 icmp eq
16                         (%B* bitcast (%A* @A_Inst to %B*), %B* @B_Inst),
17                         %Tuple { i64 33 }, %Tuple { i64 42 }), 0)