comparison 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
comparison
equal deleted inserted replaced
173:0572611fdcc8 207:2e18cbf3894f
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
7
8 // DWARF64: !{i32 7, !"DWARF64", i32 1}
9 // NODWARF64-NOT: !"DWARF64"
10
11 int main (void) {
12 return 0;
13 }