brintos

brintos / llvm-project-archived public Read only

0
0
Text · 482 B · aff9419 Raw
14 lines · c
1// RUN: %clang -target x86_64-linux-gnu -g -S -emit-llvm -o - %s | \2// RUN:   FileCheck %s --check-prefix=NODWARF643// RUN: %clang -target x86_64-linux-gnu -g -gdwarf64 -S -emit-llvm -o - %s | \4// RUN:   FileCheck %s --check-prefix=DWARF645// RUN: %clang -target x86_64-linux-gnu -g -gdwarf64 -gdwarf32 -S -emit-llvm -o - %s | \6// RUN:   FileCheck %s --check-prefix=NODWARF647 8// DWARF64: !{i32 7, !"DWARF64", i32 1}9// NODWARF64-NOT: !"DWARF64"10 11int main (void) {12  return 0;13}14