[LLVMdev] #line directives in llvm-gcc

Yossi Kreinin yossi.kreinin at mobileye.com
Sun Sep 10 02:08:18 PDT 2006


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).

Is there an option to take #line into account that I am missing?

Thanks in advance,
Yossi




More information about the llvm-dev mailing list