[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / Attributor / ArgumentPromotion / pr27568.ll
blobf4a27e6c266a0daf77b1ea2e5bdc2bf88d171588
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --function-signature --check-attributes --check-globals
2 ; RUN: opt -attributor -enable-new-pm=0 -attributor-manifest-internal  -attributor-max-iterations-verify -attributor-annotate-decl-cs -attributor-max-iterations=1 -S < %s | FileCheck %s --check-prefixes=CHECK,NOT_CGSCC_NPM,NOT_CGSCC_OPM,NOT_TUNIT_NPM,IS__TUNIT____,IS________OPM,IS__TUNIT_OPM
3 ; RUN: opt -aa-pipeline=basic-aa -passes=attributor -attributor-manifest-internal  -attributor-max-iterations-verify -attributor-annotate-decl-cs -attributor-max-iterations=1 -S < %s | FileCheck %s --check-prefixes=CHECK,NOT_CGSCC_OPM,NOT_CGSCC_NPM,NOT_TUNIT_OPM,IS__TUNIT____,IS________NPM,IS__TUNIT_NPM
4 ; RUN: opt -attributor-cgscc -enable-new-pm=0 -attributor-manifest-internal  -attributor-annotate-decl-cs -S < %s | FileCheck %s --check-prefixes=CHECK,NOT_TUNIT_NPM,NOT_TUNIT_OPM,NOT_CGSCC_NPM,IS__CGSCC____,IS________OPM,IS__CGSCC_OPM
5 ; RUN: opt -aa-pipeline=basic-aa -passes=attributor-cgscc -attributor-manifest-internal  -attributor-annotate-decl-cs -S < %s | FileCheck %s --check-prefixes=CHECK,NOT_TUNIT_NPM,NOT_TUNIT_OPM,NOT_CGSCC_OPM,IS__CGSCC____,IS________NPM,IS__CGSCC_NPM
6 target triple = "x86_64-pc-windows-msvc"
8 define internal void @callee(i8*) {
9 ; CHECK-LABEL: define {{[^@]+}}@callee() {
10 ; CHECK-NEXT:  entry:
11 ; CHECK-NEXT:    call void @thunk()
12 ; CHECK-NEXT:    ret void
14 entry:
15   call void @thunk()
16   ret void
19 define void @test1() personality i32 (...)* @__CxxFrameHandler3 {
20 ; CHECK-LABEL: define {{[^@]+}}@test1() personality i32 (...)* @__CxxFrameHandler3 {
21 ; CHECK-NEXT:  entry:
22 ; CHECK-NEXT:    invoke void @thunk()
23 ; CHECK-NEXT:    to label [[OUT:%.*]] unwind label [[CPAD:%.*]]
24 ; CHECK:       out:
25 ; CHECK-NEXT:    ret void
26 ; CHECK:       cpad:
27 ; CHECK-NEXT:    [[PAD:%.*]] = cleanuppad within none []
28 ; CHECK-NEXT:    call void @callee() [ "funclet"(token [[PAD]]) ]
29 ; CHECK-NEXT:    cleanupret from [[PAD]] unwind to caller
31 entry:
32   invoke void @thunk()
33   to label %out unwind label %cpad
35 out:
36   ret void
38 cpad:
39   %pad = cleanuppad within none []
40   call void @callee(i8* null) [ "funclet"(token %pad) ]
41   cleanupret from %pad unwind to caller
45 declare void @thunk()
47 declare i32 @__CxxFrameHandler3(...)