xref: /llvm-project/clang/test/CodeGen/debug-info-programming-language.c (revision 3c312e48f325c1b1ee11404ee6cfa08ee00037b0)
1 // RUN: %clang_cc1 -dwarf-version=3 -emit-llvm -triple %itanium_abi_triple %s -o - \
2 // RUN:   -x c -std=c11 -O0 -disable-llvm-passes -debug-info-kind=limited \
3 // RUN:   | FileCheck --check-prefix=CHECK-C11 %s
4 // RUN: %clang_cc1 -dwarf-version=3 -emit-llvm -triple %itanium_abi_triple %s -o - \
5 // RUN:   -x c -std=c17 -O0 -disable-llvm-passes -debug-info-kind=limited \
6 // RUN:   | FileCheck --check-prefix=CHECK-C17 %s
7 
8 // CHECK-C11: !DICompileUnit(language: DW_LANG_C11
9 // Update this check once support for DW_LANG_C17 is broadly supported/known in
10 // consumers. Maybe we'll skip this and go to the DWARFv6 language+version
11 // encoding that avoids the risk of regression when describing a language
12 // version newer than what the consumer is aware of.
13 // CHECK-C17: !DICompileUnit(language: DW_LANG_C11
14 
15 void f1(void) { }
16