You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
352 B
14 lines
352 B
// RUN: %clang_cc1 %s -debug-info-kind=line-tables-only -S -emit-llvm -o - | FileCheck %s
|
|
// Checks that clang with "-gline-tables-only" emits metadata for
|
|
// compile unit, subprogram and file.
|
|
|
|
int main() {
|
|
// CHECK: ret i32 0, !dbg
|
|
return 0;
|
|
}
|
|
|
|
// CHECK: !llvm.dbg.cu = !{!0}
|
|
// CHECK: !DICompileUnit(
|
|
// CHECK: !DISubprogram(
|
|
// CHECK: !DIFile(
|