Lines Matching full:i128
1391 declare void @scribble_on_i128(i128*)
1448 ; CHECK: %[[T:.*]] = load i128, i128*
1449 ; CHECK-NEXT: store i128 %[[T]], i128*
1456 %y = alloca i128
1458 %x2 = bitcast i8** %x1 to i128*
1459 %y1 = bitcast i128* %y to i8**
1460 call void @scribble_on_i128(i128* %x2)
1461 call void @scribble_on_i128(i128* %y)
1462 %tmp = load i128, i128* %x2
1463 store i128 %tmp, i128* %y
1469 define i128 @test86(i1 %flag) {
1477 ; CHECK-NEXT: %[[X:.*]] = load i128, i128*
1478 ; CHECK-NEXT: %[[Y:.*]] = load i128, i128*
1479 ; CHECK-NEXT: %[[V:.*]] = select i1 %flag, i128 %[[X]], i128 %[[Y]]
1480 ; CHECK-NEXT: ret i128 %[[V]]
1483 %y = alloca i128
1485 %x2 = bitcast i8** %x1 to i128*
1486 %y1 = bitcast i128* %y to i8**
1487 call void @scribble_on_i128(i128* %x2)
1488 call void @scribble_on_i128(i128* %y)
1491 %p = select i1 %flag, i128* %x2, i128* %y
1492 %v = load i128, i128* %p
1493 ret i128 %v