You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
312 B
12 lines
312 B
// RUN: %clang %s -g -gcolumn-info -S -emit-llvm -o - | FileCheck %s
|
|
// Checks that clang emits column information when -gcolumn-info is passed.
|
|
|
|
int foo(int a, int b) { int c = a + b;
|
|
|
|
|
|
return c;
|
|
}
|
|
|
|
// Without column information we wouldn't change locations for b.
|
|
// CHECK: !DILocation(line: 4, column: 20,
|