<div dir="ltr">I would like to add that, the assertion mentioned in the subject line (isIncompleteTypes().. related ) could be reporduced with a debug build of clang with following cmd line options<div><span style="font-family:arial,sans-serif;font-size:13px">clang++ -std=c++0x variadic103.cpp</span><br>
</div><div><span style="font-family:arial,sans-serif;font-size:13px"><br></span></div><div><span style="font-family:arial,sans-serif;font-size:13px">The second assertion related with </span><span style="font-family:arial,sans-serif;font-size:13px">isa_impl_cl</span><span style="font-family:arial,sans-serif;font-size:13px"> occurs when clang is built with the patch added as shown above in SemaTemplateInstantiateDecl.cpp.</span></div>
<div><span style="font-family:arial,sans-serif;font-size:13px">The bugreport attached contains p</span><span style="font-family:arial,sans-serif">reprocessed source and script used to run gtest-all.cc</span></div><div><br>
</div><div><span style="font-family:arial,sans-serif;font-size:13px">Appreciate any inputs on this to proceed further.</span><br></div><div><span style="font-family:arial,sans-serif;font-size:13px"><br></span></div><div>Thanks !</div>
<div>- Jyoti</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, Oct 7, 2013 at 6:35 PM, Jyoti <span dir="ltr"><<a href="mailto:jyoti.yalamanchili@gmail.com" target="_blank">jyoti.yalamanchili@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">Hi All,<div><br></div><div>I am trying to fix the above mentioned assertion for a failing gcc testcase.</div>
<div>g++.dg/c++0x/variadic103.cpp testcase ( attached )</div><div><br></div><div>Patch added is as follows in TemplateDeclInstantiator::VisitVarDecl function of  SemaTemplateInstantiateDecl.cpp</div>
<div><br></div><div>For the above testcases an error should be thrown for incomplete types having an initializer with zero elements.</div><div><br></div><div><br></div><div><span style="font-family:arial,sans-serif;font-size:13px">if (!DI)</span><br style="font-family:arial,sans-serif;font-size:13px">

<span style="font-family:arial,sans-serif;font-size:13px">    return 0;</span><br style="font-family:arial,sans-serif;font-size:13px"><br style="font-family:arial,sans-serif;font-size:13px"><font color="#000000"><span style="font-family:arial,sans-serif;font-size:13px">+ Expr* Arg= D->getInit();</span><br style="font-family:arial,sans-serif;font-size:13px">

<span style="font-family:arial,sans-serif;font-size:13px">+  InitListExpr *ILE = dyn_cast<InitListExpr>(Arg);</span><br style="font-family:arial,sans-serif;font-size:13px"><span style="font-family:arial,sans-serif;font-size:13px">+  if(!ILE || (ILE && ILE->getNumInits() == 0 )) {</span></font><div style="font-family:arial,sans-serif;font-size:13px">

<font color="#000000">+    if (DI->getType()->isIncompleteType() || DI->getType()->isIncompleteOrObjectType() ) {<br>+      if (SemaRef.RequireCompleteType(D->getLocation(), DI->getType(), <br></font></div>

<div style="font-family:arial,sans-serif;font-size:13px"><font color="#000000">+ diag::err_typecheck_incomplete_array_needs_initializer)) {<br>+        D->setInvalidDecl();<br>+       return 0;<br>+      }<br>
+    }<br></font></div><font color="#000000"><span style="font-family:arial,sans-serif;font-size:13px">+ }</span><br style="font-family:arial,sans-serif;font-size:13px"></font></div><div><font color="#000000"><span style="font-family:arial,sans-serif;font-size:13px"><br>

</span></font></div><div><font color="#000000"><span style="font-family:arial,sans-serif;font-size:13px"><br></span></font></div><div><font color="#000000" face="arial, sans-serif">With above code, there is a diagnostic thrown for </font>g++.dg/c++0x/variadic103.cpp testcase as expected and the "Assertion Failure (!isIncompleteType() && "This doesn't make sense for incomplete types"); for int [] type " is resolved, however some other assertion in isa_impl_cl occurs while running clang regression on c++ googletests file ( gtest-all.cc )</div>

<div><br></div><div>Appreciate any inputs on this for me to proceed further.</div><div><br></div><div>Thanks.</div><span class="HOEnZb"><font color="#888888"><div>- Jyoti <br></div><div><br></div><div><br></div><div><br>
</div><div><br></div><div><br></div><div><br>
</div><div><span style="font-family:arial,sans-serif;font-size:13px"><br></span></div></font></span></div>
</blockquote></div><br></div>