brintos

brintos / llvm-project-archived public Read only

0
0
Text · 312 B · 3c99fc5 Raw
12 lines · c
1// RUN: %clang %s -g -gcolumn-info -S -emit-llvm -o - | FileCheck %s2// Checks that clang emits column information when -gcolumn-info is passed.3 4int 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:  !DILocation(line: 4, column: 20,12