Displaying 1 result from an estimated 1 matches for "31ba2962".
Did you mean:
312962
2006 Sep 10
1
[LLVMdev] #line directives in llvm-gcc
Hi!
Apparently llvm-gcc ignores #line directives in source files when generating debug information. When I compile this:
//test
int f(int a)
{
#line 1 "someplace"
return a*a;
}
//end
with `llvm -g -S lines.c`, `someplace' is not mentioned in lines.s. It also looks like functions #included from header files get attributed to the #including file (albeit at the right line number).