<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Mon, May 4, 2015 at 1:54 PM, David Blaikie <span dir="ltr"><<a href="mailto:dblaikie@gmail.com" target="_blank">dblaikie@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr">Rather than replying point by point to various subjective descriptions of the state of things, perhaps I can sum up:<br><br>The fix is to teach Clang to track the use of using declarations (as I mentioned, there are complications with that) and then only emit those using declarations that are used. It's not perfect, but it's a reasonable thing to do.<br><br>If you'd like this fixed, I'm sure Fred & I can help point you in the right direction for where to get started on this work - but as I said, it's not simple/easy/trivial due to the complexity of what it means to "use" a using declaration. (see my previous email for some examples of wrinkles)</div></blockquote><div><br></div><div>(We already track some of that for -Wunused-local-typedef which also warns on unused "using A = foo;" decls. It doesn't track namespace uses, but the patch that added Wunused-local-typedef is probably a good starting point to see how this use tracking might work.)</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr"><span class=""><font color="#888888"><br><br>- David</font></span></div><div class=""><div class="h5"><div class="gmail_extra"><br><div class="gmail_quote">On Mon, May 4, 2015 at 12:46 PM, Robinson, Paul <span dir="ltr"><<a href="mailto:Paul_Robinson@playstation.sony.com" target="_blank">Paul_Robinson@playstation.sony.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">





<div lang="EN-US" link="blue" vlink="purple">
<div>
<p class="MsoNormal"><span style="font-size:11pt;font-family:Calibri,sans-serif;color:rgb(31,73,125)">From Fred:<u></u><u></u></span></p><span>
<p class="MsoNormal" style="margin-left:1in"><span style="font-size:9pt;font-family:Helvetica,sans-serif">Source fidelity is not about emitting every declaration you see.<br>
It's about, *if* you're going emit something, do it in a way that is<br>
faithful to the source-as-written.</span><u></u><u></u></p>
<p class="MsoNormal"><u></u> <u></u></p>
<p class="MsoNormal" style="margin-left:0.5in">and I’d add “gives means to the debugger to evaluate every source expression<u></u><u></u></p>
<p class="MsoNormal" style="margin-left:0.5in">as it is written in the source.” <u></u><u></u></p>
<p class="MsoNormal"><u></u> <u></u></p>
</span><p class="MsoNormal"><span style="font-size:11pt;font-family:Calibri,sans-serif;color:rgb(31,73,125)">Agreed.  But a 'using' declaration is not an expression.  If the declared name is not used in any source expression, it can hardly be needed to evaluate a source
 expression as written in the source.<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:11pt;font-family:Calibri,sans-serif;color:rgb(31,73,125)"><u></u> <u></u></span></p>
<p class="MsoNormal"><span style="font-size:11pt;font-family:Calibri,sans-serif;color:rgb(31,73,125)">I admit calling this stuff "useless" is a bit of hyperbole.  Clang is being inconsistent.  If a normal unqualified function declaration isn't emitted, and a
 normal function declaration inside a namespace isn't emitted, I see no argument justifying emitting a function that happens to be declared with a 'using' declaration. A 'using' versus a normal declaration is typically an implementation detail, not something
 inherently significant that can change the meaning of a program.<u></u><u></u></span></p><span>
<p class="MsoNormal"><span style="font-size:11pt;font-family:Calibri,sans-serif;color:rgb(31,73,125)"><u></u> <u></u></span></p>
<p class="MsoNormal" style="margin-left:0.5in"><a name="14d20b6b331ddf1c_14d2076dd6ad4670__MailEndCompose"><span style="font-size:9pt;font-family:Helvetica,sans-serif">The whole story is that I was working on getting debug info emitted<br>
for function argument default values (which I haven’t gotten back to<br>
yet BTW), and that my implementation didn’t work if the default value<br>
was a call to a forward declared function. Our decl tracking didn’t<br>
handle forward declarations at all, and David pointed out that this<br>
was why we were also missing some DW_TAG_imported_declaration. I<br>
then implemented support for forward declarations and tested it using<br>
the the only current user that cared about forward decls, that is the<br>
imported_declaration stuff.<br>
<br>
</span></a><span style="font-size:11pt;font-family:Calibri,sans-serif;color:rgb(31,73,125)"><u></u><u></u></span></p>
</span><p class="MsoNormal"><span style="font-size:11pt;font-family:Calibri,sans-serif;color:rgb(31,73,125)">But it looks to me like these "missing" imported_declarations aren't any more missing than the equivalent non-'using' declarations.  Is there a principled justification
 for the inconsistency?  I'm not hearing one.  What I'm hearing is the Clang can't keep track of what's actually needed in the source, so we arbitrarily emit some things and not others when we're not sure.  That's really unsatisfactory.<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:11pt;font-family:Calibri,sans-serif;color:rgb(31,73,125)">Now, if the forward declaration bit is something that was part of a larger project that is half-implemented, and the imported_declaration bit was a momentary
 convenience that you intended to take out later, well that's fine so long as you now intend to finish the job.<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:11pt;font-family:Calibri,sans-serif;color:rgb(31,73,125)"><u></u> <u></u></span></p>
<p class="MsoNormal"><span style="font-size:11pt;font-family:Calibri,sans-serif;color:rgb(31,73,125)">I am sympathetic to the desire to have the full power of libc available in conditional breakpoints, and so forth.  If that's your preferred mode then perhaps
 a more –gfull-to-bursting mode might be the ticket.  If it didn't cost multi-megabytes to get there, and the time it takes to write all that out, and link it together, then I'd have no problem with always emitting everything.  As it is, we seem to have at
 least two modes of not-emitting-everything, and the balance point of things-most-likely-to-be-useful doesn't really seem to warrant including "anything that the standard-library implementor decided to implement with a 'using' declaration."<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:11pt;font-family:Calibri,sans-serif;color:rgb(31,73,125)"><u></u> <u></u></span></p>
<p class="MsoNormal"><span style="font-size:11pt;font-family:Calibri,sans-serif;color:rgb(31,73,125)">(Hmmm… could we suppress this stuff just for standard-header declarations?  That's where our immediate pain-point seems to be.)<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:11pt;font-family:Calibri,sans-serif;color:rgb(31,73,125)">--paulr<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:11pt;font-family:Calibri,sans-serif;color:rgb(31,73,125)"><u></u> <u></u></span></p>
<div style="border-style:none none none solid;border-left-color:blue;border-left-width:1.5pt;padding:0in 0in 0in 4pt">
<div>
<div style="border-style:solid none none;border-top-color:rgb(181,196,223);border-top-width:1pt;padding:3pt 0in 0in">
<p class="MsoNormal"><b><span style="font-size:10pt;font-family:Tahoma,sans-serif">From:</span></b><span style="font-size:10pt;font-family:Tahoma,sans-serif"> David Blaikie [mailto:<a href="mailto:dblaikie@gmail.com" target="_blank">dblaikie@gmail.com</a>]
<br>
<b>Sent:</b> Monday, May 04, 2015 10:56 AM<br>
<b>To:</b> Frédéric Riss<br>
<b>Cc:</b> Robinson, Paul; <a href="mailto:cfe-dev@cs.uiuc.edu" target="_blank">cfe-dev@cs.uiuc.edu</a> Developers (<a href="mailto:cfe-dev@cs.uiuc.edu" target="_blank">cfe-dev@cs.uiuc.edu</a>)<br>
<b>Subject:</b> Re: [cfe-dev] r222220 causes real debug-info bloat<u></u><u></u></span></p>
</div>
</div><div><div>
<p class="MsoNormal"><u></u> <u></u></p>
<div>
<p class="MsoNormal"><u></u> <u></u></p>
<div>
<p class="MsoNormal"><u></u> <u></u></p>
<div>
<p class="MsoNormal">On Mon, May 4, 2015 at 10:39 AM, Frédéric Riss <<a href="mailto:friss@apple.com" target="_blank">friss@apple.com</a>> wrote:<u></u><u></u></p>
<div>
<p class="MsoNormal"><u></u> <u></u></p>
<div>
<div>
<div>
<blockquote style="margin-top:5pt;margin-bottom:5pt">
<div>
<p class="MsoNormal">On May 4, 2015, at 9:51 AM, Robinson, Paul <<a href="mailto:Paul_Robinson@playstation.sony.com" target="_blank">Paul_Robinson@playstation.sony.com</a>> wrote:<u></u><u></u></p>
</div>
<p class="MsoNormal"><u></u> <u></u></p>
<div>
<div>
<blockquote style="margin-top:5pt;margin-bottom:5pt;text-align:start;word-spacing:0px">
<p class="MsoNormal"><span style="font-size:9pt;font-family:Helvetica,sans-serif">-----Original Message-----<br>
From: Frédéric Riss [<a href="mailto:friss@apple.com" target="_blank">mailto:friss@apple.com</a>]<br>
Sent: Friday, May 01, 2015 6:34 PM<br>
To: Robinson, Paul<br>
Cc: <a href="mailto:cfe-dev@cs.uiuc.edu" target="_blank">cfe-dev@cs.uiuc.edu</a> Developers (<a href="mailto:cfe-dev@cs.uiuc.edu" target="_blank">cfe-dev@cs.uiuc.edu</a>)<br>
Subject: Re: r222220 causes real debug-info bloat<br>
<br>
Hi!<br>
<br>
<br>
<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:9pt;font-family:Helvetica,sans-serif">On May 1, 2015, at 5:29 PM, Robinson, Paul<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:9pt;font-family:Helvetica,sans-serif"><<a href="mailto:Paul_Robinson@playstation.sony.com" target="_blank">Paul_Robinson@playstation.sony.com</a>> wrote:<br>
<br>
<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:9pt;font-family:Helvetica,sans-serif"><br>
We were doing some size analysis and noticed some ridiculous numbers<br>
related to debug-info size.  Investigation showed that essentially all<br>
of the bloat came from DW_TAG_imported_declaration pointing to<br>
DW_TAG_subprogram and the associated DW_TAG_formal_parameter DIEs.<br>
We tracked this to r222220, which basically caused every 'using' decl<br>
of a function or variable to have a forward declaration emitted to the<br>
DWARF, whether or not that 'using' decl itself was used in the CU.<br>
<br>
#include <stdlib.h><br>
using ::abort<br>
<br>
In Clang 3.5, this produces a pretty minimal .debug_info section (just<br>
the DW_TAG_compile_unit).<br>
In Clang 3.6, we see an additional DW_TAG_subprogram for abort() and<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:9pt;font-family:Helvetica,sans-serif">then<br>
<br>
<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:9pt;font-family:Helvetica,sans-serif">a DW_TAG_imported_declaration pointing to that declaration.<br>
<br>
#include <cstdlib><br>
<br>
on Linux, Clang 3.5 wrote a .debug_info of 185 bytes, 3.6 was 1458.<br>
<br>
Multiply this by more headers and again by hundreds to thousands<br>
of modules and pretty soon you're talking multiple megabytes.<br>
Getting away from the benchmarks, a real game saw .debug_info increase<br>
by 13% (6 MB).<br>
<br>
r222220 basically causes a 'using' declaration of a function or global<br>
variable to conjure up a forward declaration, if we haven't already<br>
seen a declaration or definition.  The commentary talks about how this<br>
will be RAUW'd later on.  But I'm not sure what motivated this in the<br>
first place, and it clearly can have a huge adverse effect.<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:9pt;font-family:Helvetica,sans-serif"><br>
The whole story is that I was working on getting debug info emitted<br>
for function argument default values (which I haven’t gotten back to<br>
yet BTW), and that my implementation didn’t work if the default value<br>
was a call to a forward declared function. Our decl tracking didn’t<br>
handle forward declarations at all, and David pointed out that this<br>
was why we were also missing some DW_TAG_imported_declaration. I<br>
then implemented support for forward declarations and tested it using<br>
the the only current user that cared about forward decls, that is the<br>
imported_declaration stuff.<br>
<br>
<br>
<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:9pt;font-family:Helvetica,sans-serif">I don't mind having a DW_TAG_imported_declaration for something that<br>
actually gets used in the CU, but a 'using' declaration all by itself<br>
should not count as "used" for purposes of emitting debug info.<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:9pt;font-family:Helvetica,sans-serif"><br>
It’s not that the using clause counts as a ‘use’, it’s just a<br>
question of source fidelity.<u></u><u></u></span></p>
</blockquote>
<p class="MsoNormal"><span style="font-size:9pt;font-family:Helvetica,sans-serif"><br>
Source fidelity is not about emitting every declaration you see.<br>
It's about, *if* you're going emit something, do it in a way that is<br>
faithful to the source-as-written.</span><u></u><u></u></p>
</div>
</div>
</blockquote>
<div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
</div>
</div>
<div>
<p class="MsoNormal">and I’d add “gives means to the debugger to evaluate every source expression<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">as it is written in the source.” <u></u><u></u></p>
</div>
<p class="MsoNormal"><br>
<br>
<u></u><u></u></p>
<div>
<div>
<blockquote style="margin-top:5pt;margin-bottom:5pt;text-align:start;word-spacing:0px">
<p class="MsoNormal"><span style="font-size:9pt;font-family:Helvetica,sans-serif">Your above example isn’t really<br>
compelling. By changing it a little bit to:<br>
<br>
#include <stdlib.h><br>
<br>
namespace A {<br>
using ::abort;<br>
}<br>
<br>
The goal of the imported_declaration information is to inform<br>
the debugger that in this CU, A::abort is the same thing as<br>
::abort. It’s just a matter of describing aliased name to<br>
the debugger so that it can correctly evaluate source<br>
expressions.<u></u><u></u></span></p>
</blockquote>
<p class="MsoNormal"><span style="font-size:9pt;font-family:Helvetica,sans-serif"><br>
Consider this:<br>
<br>
void abort();<br>
namespace A {<br>
#if USING<br>
 using ::abort();<br>
#else<br>
 void abort();<br>
#endif<br>
};<br>
<br>
In the not-USING case, Clang emits nothing but the CU DIE, because<br>
neither abort() declaration is used.<br>
In the USING case, we see the imported_declaration and the associated<br>
subprogram.  In both cases, the set of declared names is the same, and<br>
there are no *actual* uses of either name.</span><u></u><u></u></p>
</div>
</div>
<div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
<div>
<p class="MsoNormal">I’m repeating myself, but this is not about uses, just about describing names.<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
<div>
<p class="MsoNormal">Then, as a compiler policy, you might want to limit the names you describe<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">to the ones that are actually used in the program (we have no code to track<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">the uses and modify the debug info accordingly). You might also want to<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">emit all the names so that the debugger can evaluate accurately every<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">expression that could happen in the source code.<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
<div>
<p class="MsoNormal">I’m not arguing that one of the above is better than the other (the answer can<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">certainly be different depending on the environment), I mostly want to point<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">out that this information isn’t as useless as you seem to think.<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
<blockquote style="margin-top:5pt;margin-bottom:5pt">
<div>
<div>
<p class="MsoNormal"><span style="font-size:9pt;font-family:Helvetica,sans-serif">Therefore, I argue, this is not about source fidelity but about<br>
declining to produce declarations not useful to the consumer.</span><u></u><u></u></p>
</div>
</div>
</blockquote>
<div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
<div>
<p class="MsoNormal">David would need to confirm, but I think that if we revert the change, there<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">are tests in the GDB test suite that will fail.<u></u><u></u></p>
</div>
</div>
</div>
<div>
<p class="MsoNormal"><br>
I don't recall precisely - but yes, I think we un-XFAIL'd some tests after you made this change. Could check.<br>
 <u></u><u></u></p>
</div>
<blockquote style="border-style:none none none solid;border-left-color:rgb(204,204,204);border-left-width:1pt;padding:0in 0in 0in 6pt;margin-left:4.8pt;margin-right:0in">
<div>
<div>
<div>
<p class="MsoNormal">‘Not useful’ information should not<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">be able to break user level tests, should it? <u></u><u></u></p>
</div>
<p class="MsoNormal"><br>
<br>
<u></u><u></u></p>
<div>
<div>
<blockquote style="margin-top:5pt;margin-bottom:5pt;text-align:start;word-spacing:0px">
<p class="MsoNormal"><span style="font-size:9pt;font-family:Helvetica,sans-serif"><br>
<br>
<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:9pt;font-family:Helvetica,sans-serif">Can somebody describe how these extra forward declarations fit into<br>
the Grand Scheme of Things in a beneficial way, and can we do something<br>
about unused 'using' declarations?<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:9pt;font-family:Helvetica,sans-serif"><br>
I totally get your point about the size, and according to past<br>
conversations, I gather that the use described above isn’t maybe<br>
relevant to your debugger (which maybe points to something that<br>
can be tuned depending on the target debugger? I’m sorry, but I<br>
just came back from a long leave and I’m so much behind on list<br>
reading that I have no idea of the status of that idea).<br>
<br>
IMO, it has nothing to do with the fact that the function/variable<br>
is used or not. The using directives create new names and the only<br>
way for the debugger(s) to understand these names is to have them<br>
described in the debug info.<u></u><u></u></span></p>
</blockquote>
<p class="MsoNormal"><span style="font-size:9pt;font-family:Helvetica,sans-serif"><br>
By that argument you should emit every name you see in every header,<br>
whether it is used or not.  That's not what we do, because it's not<br>
useful to anyone and unnecessarily bloats the debug info.  The case of<br>
used-only-by-'using' is no different because there's no *actual* use.</span><u></u><u></u></p>
</div>
</div>
<div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
<div>
<p class="MsoNormal">I’m sorry, but the fact that all declarations aren’t emitted happen to bother<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">me from time to time. I’m a heavy user of debugger conditional breakpoints,<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">and the conditions often involve calling to functions that aren’t defined in my<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">program, but which were described in the headers (for example libc).<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
<div>
<p class="MsoNormal">Not having the prototype for these functions available to the debugger requires<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">me to play casting games so that it gets the calling convention correctly. If all<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">the declarations were to be emitted I wouldn’t have that issue and my debug<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">experience would be better.<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
<div>
<p class="MsoNormal">Do not get me wrong. I’m not arguing for including all the declarations. I’m just<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">trying to point out the the information isn’t useless as you describe it and that <u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">there is a balance to find. Including only the names that have been really used<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">in the program would be a perfectly sensible one, but we do not have the code<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">that does that tracking!<u></u><u></u></p>
</div>
<p class="MsoNormal"><br>
<br>
<u></u><u></u></p>
<div>
<div>
<p class="MsoNormal"><span style="font-size:9pt;font-family:Helvetica,sans-serif">I found it instructive to add this to my not-USING example:<br>
<br>
void foo() { ::abort(); A::abort(); }<br>
<br>
which naively I would expect to induce subprogram DIEs for abort() and<br>
A::abort(), but in fact it doesn't, even with -fstandalone-debug.  That<br>
seems sub-optimal too.  But, it just further illustrates the discrepancy<br>
between the 'using' declarations and non-'using' declarations.<br>
<br>
Also that there's a deeper problem here, which might or might not be<br>
what David Blaikie was getting at.<br>
<br>
The missing DIEs in the non-USING case, along with memories of trying<br>
to do something else with used/non-used declarations some while ago,<br>
make me think that even though abort() and A::abort() are (probably)<br>
being flagged, debug-info generation isn't going back through those<br>
non-defining declarations to see which ones ought to be emitted after<br>
all.</span><u></u><u></u></p>
</div>
</div>
<div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
<div>
<p class="MsoNormal">As pointed above, such code that goes from the uses to the debug info just<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">doesn’t exist. The debug info for types and declarations is generated during<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal">AST construction (IIRC) and not touched afterwards.<u></u><u></u></p>
</div>
<div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
<div>
<p class="MsoNormal">Fred<u></u><u></u></p>
</div>
<p class="MsoNormal"><br>
<br>
<u></u><u></u></p>
<div>
<div>
<p class="MsoNormal"><span style="font-size:9pt;font-family:Helvetica,sans-serif">It looks like CGDebugInfo::finalize() does a post-pass for types, to<br>
some extent; maybe that needs to be done for other decls as well?<br>
--paulr<br>
<br style="text-align:start;word-spacing:0px">
<br>
</span><u></u><u></u></p>
<p class="MsoNormal"><span style="font-size:9pt;font-family:Helvetica,sans-serif"><br>
<br>
<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:9pt;font-family:Helvetica,sans-serif">Given how the patch works, it looks we can just short-circuit the<br>
creation of these forward declarations with no harm done, but I have to<br>
wonder whether we're shooting ourselves in the foot in some situation<br>
that isn't immediately obvious.<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:9pt;font-family:Helvetica,sans-serif"><br>
If the git commit message is still accurate regarding the use of that<br>
function, then you’ll just go back to the previous state which you<br>
liked better. If the function grows new callers, you might lose<br>
more stuff, but IIUC it should mostly be stuff that you don’t care<br>
about anyway.<br>
<br>
Fred<br>
<br>
<br>
<br>
<u></u><u></u></span></p>
<p class="MsoNormal"><span style="font-size:9pt;font-family:Helvetica,sans-serif">Thanks,<br>
--paulr<u></u><u></u></span></p>
</div>
</div>
</div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
<p class="MsoNormal" style="margin-bottom:12pt"><br>
_______________________________________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@cs.uiuc.edu" target="_blank">cfe-dev@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev</a><u></u><u></u></p>
</blockquote>
</div>
<p class="MsoNormal"><u></u> <u></u></p>
</div>
</div>
</div></div></div>
</div>
</div>

</blockquote></div><br></div>
</div></div><br>_______________________________________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@cs.uiuc.edu">cfe-dev@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev</a><br>
<br></blockquote></div><br></div></div>