1; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx908 -o - < %s | FileCheck %s --check-prefix=EH 2; RUN: llc -mtriple=amdgcn-amd-amdhsa --force-dwarf-frame-section -o - < %s | FileCheck %s --check-prefix=BOTH 3; RUN: llc -mtriple=amdgcn-amd-amdhsa --exception-model=dwarf -o - < %s | FileCheck %s --check-prefix=EH 4; RUN: llc -mtriple=amdgcn-amd-amdhsa --force-dwarf-frame-section --exception-model=dwarf -o - < %s | FileCheck %s --check-prefix=BOTH 5 6; EH: f: 7; EH-NOT: .cfi_sections 8; EH: .cfi_startproc 9 10; BOTH: f: 11; BOTH: .cfi_sections .eh_frame, .debug_frame 12; BOTH: .cfi_startproc 13 14define void @f() nounwind uwtable !dbg !0 { 15entry: 16 ret void 17} 18 19!llvm.dbg.cu = !{!2} 20!llvm.module.flags = !{!7} 21!5 = !{!0} 22 23!0 = distinct !DISubprogram(name: "f", line: 1, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: true, unit: !2, scopeLine: 1, file: !6, scope: !1, type: !3) 24!1 = !DIFile(filename: "/home/llvm/test.c", directory: "/home/llvm/build") 25!2 = distinct !DICompileUnit(language: DW_LANG_C99, producer: "clang", isOptimized: true, emissionKind: FullDebug, file: !6, enums: !{}, retainedTypes: !{}) 26!3 = !DISubroutineType(types: !4) 27!4 = !{null} 28!6 = !DIFile(filename: "/home/llvm/test.c", directory: "/home/llvm/build") 29!7 = !{i32 1, !"Debug Info Version", i32 3} 30