[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / dwarf-format.c
blobaff9419933719d4ef7a258d865d227e881a51e90
1 // RUN: %clang -target x86_64-linux-gnu -g -S -emit-llvm -o - %s | \
2 // RUN: FileCheck %s --check-prefix=NODWARF64
3 // RUN: %clang -target x86_64-linux-gnu -g -gdwarf64 -S -emit-llvm -o - %s | \
4 // RUN: FileCheck %s --check-prefix=DWARF64
5 // RUN: %clang -target x86_64-linux-gnu -g -gdwarf64 -gdwarf32 -S -emit-llvm -o - %s | \
6 // RUN: FileCheck %s --check-prefix=NODWARF64
8 // DWARF64: !{i32 7, !"DWARF64", i32 1}
9 // NODWARF64-NOT: !"DWARF64"
11 int main (void) {
12 return 0;