[NFC][analyzer][docs] Crosslink MallocChecker's ownership attributes (#121939)
[llvm-project.git] / llvm / test / Transforms / Scalarizer / uadd_overflow.ll
blob39094451523a5e6317997adbfa1bae656a8fa3f9
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 5
2 ; RUN: opt %s -passes='function(scalarizer)' -S | FileCheck %s
4 ; Test to make sure that struct return intrinsics that are not `isTriviallyScalarizable` do not get scalarized.
6 define <3 x i32> @test_(<3 x i32> %a, <3 x i32> %b) {
7 ; CHECK-LABEL: define <3 x i32> @test_(
8 ; CHECK-SAME: <3 x i32> [[A:%.*]], <3 x i32> [[B:%.*]]) {
9 ; CHECK-NEXT:    [[R:%.*]] = call { <3 x i32>, <3 x i1> } @llvm.uadd.with.overflow.v3i32(<3 x i32> [[B]], <3 x i32> [[B]])
10 ; CHECK-NEXT:    [[EL:%.*]] = extractvalue { <3 x i32>, <3 x i1> } [[R]], 0
11 ; CHECK-NEXT:    ret <3 x i32> [[EL]]
13   %r = call { <3 x i32>, <3 x i1> } @llvm.uadd.with.overflow.v3i32(<3 x i32> %b, <3 x i32> %b)
14   %el = extractvalue { <3 x i32>, <3 x i1> } %r, 0
15   ret <3 x i32> %el