<div dir="ltr">I think I've fixed it in here:<div><br></div><div><div>ghostwheel:~/sources/dragonegg> svn ci</div><div>Sending src/Convert.cpp</div><div>Transmitting file data .</div><div>Committed revision 171950.</div>
</div><div><br></div><div style>I'll look at the bots after dinner to verify.</div><div style><br></div><div style>Thanks for letting me know.</div><div style><br></div><div style>-eric</div></div><div class="gmail_extra">
<br><br><div class="gmail_quote">On Tue, Jan 8, 2013 at 7:40 PM, Eric Christopher <span dir="ltr"><<a href="mailto:echristo@gmail.com" target="_blank">echristo@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div dir="ltr">Yay. I wonder why?<div><br></div><div>I'll take a look shortly.</div><span class="HOEnZb"><font color="#888888"><div><br></div><div>-eric</div></font></span></div><div class="HOEnZb"><div class="h5"><div class="gmail_extra">
<br><br><div class="gmail_quote">On Tue, Jan 8, 2013 at 7:38 PM, NAKAMURA Takumi <span dir="ltr"><<a href="mailto:geek4civic@gmail.com" target="_blank">geek4civic@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Eric, it seems dragonegg is using DW_TAG_return_variable...<br>
<br>
2013/1/8 Eric Christopher <<a href="mailto:echristo@gmail.com" target="_blank">echristo@gmail.com</a>>:<br>
<div><div>> Author: echristo<br>
> Date: Mon Jan 7 18:16:33 2013<br>
> New Revision: 171821<br>
><br>
> URL: <a href="http://llvm.org/viewvc/llvm-project?rev=171821&view=rev" target="_blank">http://llvm.org/viewvc/llvm-project?rev=171821&view=rev</a><br>
> Log:<br>
> Remove what appears to be a dead llvm-specific debug tag.<br>
><br>
> Modified:<br>
> llvm/trunk/docs/SourceLevelDebugging.rst<br>
> llvm/trunk/include/llvm/Support/Dwarf.h<br>
> llvm/trunk/lib/IR/DebugInfo.cpp<br>
> llvm/trunk/lib/Support/Dwarf.cpp<br>
><br>
> Modified: llvm/trunk/docs/SourceLevelDebugging.rst<br>
> URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/SourceLevelDebugging.rst?rev=171821&r1=171820&r2=171821&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/SourceLevelDebugging.rst?rev=171821&r1=171820&r2=171821&view=diff</a><br>
> ==============================================================================<br>
> --- llvm/trunk/docs/SourceLevelDebugging.rst (original)<br>
> +++ llvm/trunk/docs/SourceLevelDebugging.rst Mon Jan 7 18:16:33 2013<br>
> @@ -585,12 +585,10 @@<br>
><br>
> DW_TAG_auto_variable = 256<br>
> DW_TAG_arg_variable = 257<br>
> - DW_TAG_return_variable = 258<br>
><br>
> An auto variable is any variable declared in the body of the function. An<br>
> argument variable is any variable that appears as a formal argument to the<br>
> -function. A return variable is used to track the result of a function and has<br>
> -no source correspondent.<br>
> +function.<br>
><br>
> The context is either the subprogram or block where the variable is defined.<br>
> Name the source variable name. Context and line indicate where the variable<br>
><br>
> Modified: llvm/trunk/include/llvm/Support/Dwarf.h<br>
> URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/Dwarf.h?rev=171821&r1=171820&r2=171821&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/Dwarf.h?rev=171821&r1=171820&r2=171821&view=diff</a><br>
> ==============================================================================<br>
> --- llvm/trunk/include/llvm/Support/Dwarf.h (original)<br>
> +++ llvm/trunk/include/llvm/Support/Dwarf.h Mon Jan 7 18:16:33 2013<br>
> @@ -37,7 +37,7 @@<br>
> namespace dwarf {<br>
><br>
> //===----------------------------------------------------------------------===//<br>
> -// Dwarf constants as gleaned from the DWARF Debugging Information Format V.3<br>
> +// Dwarf constants as gleaned from the DWARF Debugging Information Format V.4<br>
> // reference manual <a href="http://dwarf.freestandards.org" target="_blank">http://dwarf.freestandards.org</a> .<br>
> //<br>
><br>
> @@ -50,7 +50,7 @@<br>
><br>
> DW_TAG_auto_variable = 0x100, // Tag for local (auto) variables.<br>
> DW_TAG_arg_variable = 0x101, // Tag for argument variables.<br>
> - DW_TAG_return_variable = 0x102, // Tag for return variables.<br>
> + // 0x102 - Unused.<br>
> DW_TAG_vector_type = 0x103, // Tag for vector types.<br>
><br>
> DW_TAG_user_base = 0x1000, // Recommended base for user tags.<br>
><br>
> Modified: llvm/trunk/lib/IR/DebugInfo.cpp<br>
> URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/IR/DebugInfo.cpp?rev=171821&r1=171820&r2=171821&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/IR/DebugInfo.cpp?rev=171821&r1=171820&r2=171821&view=diff</a><br>
> ==============================================================================<br>
> --- llvm/trunk/lib/IR/DebugInfo.cpp (original)<br>
> +++ llvm/trunk/lib/IR/DebugInfo.cpp Mon Jan 7 18:16:33 2013<br>
> @@ -212,7 +212,6 @@<br>
> switch (getTag()) {<br>
> case dwarf::DW_TAG_auto_variable:<br>
> case dwarf::DW_TAG_arg_variable:<br>
> - case dwarf::DW_TAG_return_variable:<br>
> return true;<br>
> default:<br>
> return false;<br>
><br>
> Modified: llvm/trunk/lib/Support/Dwarf.cpp<br>
> URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Dwarf.cpp?rev=171821&r1=171820&r2=171821&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Dwarf.cpp?rev=171821&r1=171820&r2=171821&view=diff</a><br>
> ==============================================================================<br>
> --- llvm/trunk/lib/Support/Dwarf.cpp (original)<br>
> +++ llvm/trunk/lib/Support/Dwarf.cpp Mon Jan 7 18:16:33 2013<br>
> @@ -80,7 +80,6 @@<br>
> case DW_TAG_hi_user: return "DW_TAG_hi_user";<br>
> case DW_TAG_auto_variable: return "DW_TAG_auto_variable";<br>
> case DW_TAG_arg_variable: return "DW_TAG_arg_variable";<br>
> - case DW_TAG_return_variable: return "DW_TAG_return_variable";<br>
> case DW_TAG_vector_type: return "DW_TAG_vector_type";<br>
> case DW_TAG_rvalue_reference_type: return "DW_TAG_rvalue_reference_type";<br>
> case DW_TAG_template_alias: return "DW_TAG_template_alias";<br>
><br>
><br>
> _______________________________________________<br>
> llvm-commits mailing list<br>
> <a href="mailto:llvm-commits@cs.uiuc.edu" target="_blank">llvm-commits@cs.uiuc.edu</a><br>
> <a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits</a><br>
</div></div></blockquote></div><br></div>
</div></div></blockquote></div><br></div>