15 lines · plain
1! RUN: %flang_fc1 -emit-llvm -debug-info-kind=standalone %s -o - | FileCheck %s2 3program test4 type t15 integer :: XcX6 integer :: xdtx7 end type8 type(t1) :: var9 var%XcX = 210 var%xdtx = 311end12 13! Test that there is no debug info for compiler generated globals.14! CHECK-NOT: DIGlobalVariable15