[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / X86 / GC / dynamic-frame-size.ll
blob717bd893689e60fbaa43311c5c81b25042246afd
1 ; RUN: llc < %s | FileCheck %s
2 target datalayout = "e-i64:64-f80:128-n8:16:32:64-S128"
3 target triple = "x86_64-pc-linux-gnu"
5 declare void @use(ptr)
7 ; Test that a frame which requires dynamic relocation produces a stack map
8 ; with a size of UINT64_MAX.
9 define void @test(ptr %ptr) gc "erlang" {
10    ; 32 byte alignment (for the alloca) is larger than the default
11    ; 16 byte alignment
12    %slot = alloca <4 x ptr>
13    call void @use(ptr %slot);
14    ret void
17 ; CHECK: .note.gc
18 ; CHECK-NEXT: .p2align 3
19 ; safe point count
20 ; CHECK: .short 1
21 ; CHECK: .long  .Ltmp0
22 ; stack frame size (in words)
23 ; CHECK: .short -1
24 ; stack arity (arguments on the stack)
25 ; CHECK: .short 0
26 ; live root count
27 ; CHECK: .short 0