view clang/test/CodeGen/dwarf-format.c @ 207:2e18cbf3894f

LLVM12
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 08 Jun 2021 06:07:14 +0900
parents
children
line wrap: on
line source

// RUN: %clang -target x86_64-linux-gnu -g -S -emit-llvm -o - %s | \
// RUN:   FileCheck %s --check-prefix=NODWARF64
// RUN: %clang -target x86_64-linux-gnu -g -gdwarf64 -S -emit-llvm -o - %s | \
// RUN:   FileCheck %s --check-prefix=DWARF64
// RUN: %clang -target x86_64-linux-gnu -g -gdwarf64 -gdwarf32 -S -emit-llvm -o - %s | \
// RUN:   FileCheck %s --check-prefix=NODWARF64

// DWARF64: !{i32 7, !"DWARF64", i32 1}
// NODWARF64-NOT: !"DWARF64"

int main (void) {
  return 0;
}