Displaying 2 results from an estimated 2 matches for "locdirectiveus".
Did you mean:
locdirectiveused
2008 Jul 17
3
[LLVMdev] RFC: debug_line Emission
...indicated that ".loc"
was used. If it was, then we would exit out of the EmitDebugLine
method early. Something like so:
// If there are no lines to emit (such as when we're using .loc
directives
// to emit .debug_line information) don't emit a .debug_line
header.
if (LocDirectiveUsed())
return;
Dan wasn't sure if this would work in all cases. We don't have a Linux
box to test this on. Does this sound like a good idea? Those who work
with Linux or other OSes, would this idea break things for you?
-bw
2008 Jul 18
0
[LLVMdev] RFC: debug_line Emission
...used. If it was, then we would exit out of the EmitDebugLine
> method early. Something like so:
>
>
> // If there are no lines to emit (such as when we're using .loc
> directives
> // to emit .debug_line information) don't emit a .debug_line
> header.
> if (LocDirectiveUsed())
> return;
>
> Dan wasn't sure if this would work in all cases. We don't have a Linux
> box to test this on. Does this sound like a good idea? Those who work
> with Linux or other OSes, would this idea break things for you?
>
> -bw
> ________________________...