xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/lineno-dbginfo.c (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1 // RUN: echo "#include <stddef.h>" > %t.h
2 // RUN: %clang_cc1 -S -g -include %t.h %s -emit-llvm -o - | FileCheck %s
3 
4 // CHECK: !"0x34\00outer\00outer\00\00[[@LINE+1]]\000\001"
5 int outer = 42;
6 
7