search for: ldebug_frame_endl

Displaying 1 result from an estimated 1 matches for "ldebug_frame_endl".

Did you mean: ldebug_frame_end66
2009 Nov 18
1
[LLVMdev] Question about program debugging after code duplication
..., so I switched to clang. I replaced all uses of llvm-gcc to clang. Then The final step aborts because clang finds several identical labels in the program. I examined the .s file, there is no identical labels in assembly(output of step 3). The duplicated labels, which caused errors, are like ".Ldebug_frame_endl" etc, inserted by clang. I suspect that it is because the original code was annotated with debug information, and after the code was duplicated, debug information is copied over as well, at the final step, the same label is generated for both. Is that right? My *question* is: if that is a cor...