[flang] Accept polymorphic component element in storage_size
[llvm-project.git] / flang / test / Fir / box-typecode.fir
blob51b2d027a5d434ed6af1be2834d1f6a0f00c23a3
1 // RUN: tco %s | FileCheck %s
3 func.func @test_box_typecode(%a: !fir.class<none>) -> i32 {
4   %0 = fir.box_typecode %a : (!fir.class<none>) -> i32
5   return %0 : i32
8 // CHECK-LABEL: @test_box_typecode(
9 // CHECK-SAME: ptr %[[BOX:.*]]) 
10 // CHECK: %[[GEP:.*]] = getelementptr { ptr, i{{.*}}, i{{.*}}, i{{.*}}, i{{.*}}, i{{.*}}, i{{.*}} }, ptr %[[BOX]], i32 0, i32 4
11 // CHECK: %[[TYPE_CODE:.*]] = load i32, ptr %[[GEP]]
12 // CHECK: ret i32 %[[TYPE_CODE]]