brintos

brintos / llvm-project-archived public Read only

0
0
Text · 296 B · 485b80e Raw
10 lines · c
1// REQUIRES: !system-windows, !system-cygwin2// RUN: %clang -g -S -emit-llvm -o - %s | FileCheck %s3// RUN: %clang -S -emit-llvm -o - %s | FileCheck %s --check-prefix=NO_DEBUG4int main (void) {5  return 0;6}7 8// CHECK:  i32 2, !"Debug Info Version", i32 3}9// NO_DEBUG-NOT: !"Debug Info Version"10