are no known current users of column info. Robustify and fix up a few tests in the process. Reduces the size of debug information by a small amount. Part of PR14106 llvm-svn: 166236
17 lines
208 B
C
17 lines
208 B
C
// RUN: %clang_cc1 -g -S -emit-llvm %s -o - | FileCheck %s
|
|
|
|
void func(char c, char* d)
|
|
{
|
|
*d = c + 1;
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
// CHECK: ret void, !dbg [[LINE:.*]]
|
|
// CHECK: [[LINE]] = metadata !{i32 6,
|