xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/debug-info-line4.c (revision 0b98e8aad89f2bd4ba80b523d73cf29e9dd82ce1)
1 // RUN: %clang %s -g -gcolumn-info -S -emit-llvm -o - | FileCheck %s
2 // Checks that clang emits column information when -gcolumn-info is passed.
3 
4 int foo(int a, int b) { int c = a + b;
5 
6 
7   return c;
8 }
9 
10 // Without column information we wouldn't change locations for b.
11 // CHECK: metadata !{i32 4, i32 20,
12